StateMachineVersionListItem

Contains details about a specific state machine version.

OrchestrationServerlessState MachineWorkflow

Properties

Name Type Description
stateMachineVersionArn object
creationDate object
View JSON Schema on GitHub

JSON Schema

amazon-step-functions-state-machine-version-list-item-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-state-machine-version-list-item-schema.json",
  "title": "StateMachineVersionListItem",
  "description": "Contains details about a specific state machine version.",
  "type": "object",
  "properties": {
    "stateMachineVersionArn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/LongArn"
        },
        {
          "description": "The Amazon Resource Name (ARN) that identifies a state machine version. The version ARN is a combination of state machine ARN and the version number separated by a colon (:). For example, <code>stateMachineARN:1</code>."
        }
      ]
    },
    "creationDate": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Timestamp"
        },
        {
          "description": "The creation date of a state machine version."
        }
      ]
    }
  },
  "required": [
    "stateMachineVersionArn",
    "creationDate"
  ]
}