StopExecutionOutput

StopExecutionOutput schema from Amazon Step Functions API

OrchestrationServerlessState MachineWorkflow

Properties

Name Type Description
stopDate object
View JSON Schema on GitHub

JSON Schema

amazon-step-functions-stop-execution-output-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-stop-execution-output-schema.json",
  "title": "StopExecutionOutput",
  "description": "StopExecutionOutput schema from Amazon Step Functions API",
  "type": "object",
  "properties": {
    "stopDate": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Timestamp"
        },
        {
          "description": "The date the execution is stopped."
        }
      ]
    }
  },
  "required": [
    "stopDate"
  ]
}