Amazon Step Functions · JSON Structure

Amazon Step Functions Start Sync Execution Output Structure

StartSyncExecutionOutput schema from Amazon Step Functions API

Type: object Properties: 14 Required: 4
OrchestrationServerlessState MachineWorkflow

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

Properties

executionArn stateMachineArn name startDate stopDate status error cause input inputDetails output outputDetails traceHeader billingDetails

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-sync-execution-output-structure.json",
  "name": "StartSyncExecutionOutput",
  "description": "StartSyncExecutionOutput schema from Amazon Step Functions API",
  "properties": {
    "executionArn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Arn"
        },
        {
          "description": "The Amazon Resource Name (ARN) that identifies the execution."
        }
      ]
    },
    "stateMachineArn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Arn"
        },
        {
          "description": "The Amazon Resource Name (ARN) that identifies the state machine."
        }
      ]
    },
    "name": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Name"
        },
        {
          "description": "The name of the execution."
        }
      ]
    },
    "startDate": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Timestamp"
        },
        {
          "description": "The date the execution is started."
        }
      ]
    },
    "stopDate": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Timestamp"
        },
        {
          "description": "If the execution has already ended, the date the execution stopped."
        }
      ]
    },
    "status": {
      "allOf": [
        {
          "$ref": "#/components/schemas/SyncExecutionStatus"
        },
        {
          "description": "The current status of the execution."
        }
      ]
    },
    "error": {
      "allOf": [
        {
          "$ref": "#/components/schemas/SensitiveError"
        },
        {
          "description": "The error code of the failure."
        }
      ]
    },
    "cause": {
      "allOf": [
        {
          "$ref": "#/components/schemas/SensitiveCause"
        },
        {
          "description": "A more detailed explanation of the cause of the failure."
        }
      ]
    },
    "input": {
      "allOf": [
        {
          "$ref": "#/components/schemas/SensitiveData"
        },
        {
          "description": "The string that contains the JSON input data of the execution. Length constraints apply to the payload size, and are expressed as bytes in UTF-8 encoding."
        }
      ]
    },
    "inputDetails": {
      "$ref": "#/components/schemas/CloudWatchEventsExecutionDataDetails"
    },
    "output": {
      "allOf": [
        {
          "$ref": "#/components/schemas/SensitiveData"
        },
        {
          "description": "<p>The JSON output data of the execution. Length constraints apply to the payload size, and are expressed as bytes in UTF-8 encoding.</p> <note> <p>This field is set only if the execution succeeds. If the execution fails, this field is null.</p> </note>"
        }
      ]
    },
    "outputDetails": {
      "$ref": "#/components/schemas/CloudWatchEventsExecutionDataDetails"
    },
    "traceHeader": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TraceHeader"
        },
        {
          "description": "The X-Ray trace header that was passed to the execution."
        }
      ]
    },
    "billingDetails": {
      "allOf": [
        {
          "$ref": "#/components/schemas/BillingDetails"
        },
        {
          "description": "An object that describes workflow billing details, including billed duration and memory use."
        }
      ]
    }
  },
  "required": [
    "executionArn",
    "startDate",
    "stopDate",
    "status"
  ]
}