MapIterationEventDetails

Contains details about an iteration of a Map state.

OrchestrationServerlessState MachineWorkflow

Properties

Name Type Description
name object
index object
View JSON Schema on GitHub

JSON Schema

amazon-step-functions-map-iteration-event-details-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-step-functions/refs/heads/main/json-schema/amazon-step-functions-map-iteration-event-details-schema.json",
  "title": "MapIterationEventDetails",
  "description": "Contains details about an iteration of a Map state.",
  "type": "object",
  "properties": {
    "name": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Name"
        },
        {
          "description": "The name of the iteration\u2019s parent Map state."
        }
      ]
    },
    "index": {
      "allOf": [
        {
          "$ref": "#/components/schemas/UnsignedInteger"
        },
        {
          "description": "The index of the array belonging to the Map state iteration."
        }
      ]
    }
  }
}