Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

MapIterationEventDetails

import type { MapIterationEventDetails } from "https://aws-api.deno.dev/v0.3/services/stepfunctions.ts?docs=full";

Contains details about an iteration of a Map state.

interface MapIterationEventDetails {
index?: number | null;
name?: string | null;
}

§Properties

§
index?: number | null
[src]

The index of the array belonging to the Map state iteration.

§
name?: string | null
[src]

The name of the iteration’s parent Map state.