Amazon Step Functions · JSON Structure

Amazon Step Functions State Exited Event Details Structure

Contains details about an exit from a state during an execution.

Type: object Properties: 3 Required: 1
OrchestrationServerlessState MachineWorkflow

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

Properties

name output outputDetails

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-state-exited-event-details-structure.json",
  "name": "StateExitedEventDetails",
  "description": "Contains details about an exit from a state during an execution.",
  "properties": {
    "name": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Name"
        },
        {
          "description": "<p>The name of the state.</p> <p>A name must <i>not</i> contain:</p> <ul> <li> <p>white space</p> </li> <li> <p>brackets <code>&lt; &gt; { } [ ]</code> </p> </li> <li> <p>wildcard characters <code>? *</code> </p> </li> <li> <p>special characters <code>\" # % \\ ^ | ~ ` $ &amp; , ; : /</code> </p> </li> <li> <p>control characters (<code>U+0000-001F</code>, <code>U+007F-009F</code>)</p> </li> </ul> <p>To enable logging with CloudWatch Logs, the name should only contain 0-9, A-Z, a-z, - and _.</p>"
        }
      ]
    },
    "output": {
      "allOf": [
        {
          "$ref": "#/components/schemas/SensitiveData"
        },
        {
          "description": "The JSON output data of the state. Length constraints apply to the payload size, and are expressed as bytes in UTF-8 encoding."
        }
      ]
    },
    "outputDetails": {
      "allOf": [
        {
          "$ref": "#/components/schemas/HistoryEventExecutionDataDetails"
        },
        {
          "description": "Contains details about the output of an execution history event."
        }
      ]
    }
  },
  "required": [
    "name"
  ]
}