Amazon Step Functions · JSON Structure

Amazon Step Functions Start Execution Output Structure

StartExecutionOutput schema from Amazon Step Functions API

Type: object Properties: 2 Required: 2
OrchestrationServerlessState MachineWorkflow

StartExecutionOutput is a JSON Structure definition published by Amazon Step Functions, describing 2 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

executionArn startDate

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "type": "object",
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-step-functions/refs/heads/main/json-structure/amazon-step-functions-start-execution-output-structure.json",
  "name": "StartExecutionOutput",
  "description": "StartExecutionOutput schema from Amazon Step Functions API",
  "properties": {
    "executionArn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Arn"
        },
        {
          "description": "The Amazon Resource Name (ARN) that identifies the execution."
        }
      ]
    },
    "startDate": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Timestamp"
        },
        {
          "description": "The date the execution is started."
        }
      ]
    }
  },
  "required": [
    "executionArn",
    "startDate"
  ]
}