Amazon Step Functions · JSON Structure

Amazon Step Functions Create Activity Output Structure

CreateActivityOutput schema from Amazon Step Functions API

Type: object Properties: 2 Required: 2
OrchestrationServerlessState MachineWorkflow

CreateActivityOutput 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

activityArn creationDate

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-create-activity-output-structure.json",
  "name": "CreateActivityOutput",
  "description": "CreateActivityOutput schema from Amazon Step Functions API",
  "properties": {
    "activityArn": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Arn"
        },
        {
          "description": "The Amazon Resource Name (ARN) that identifies the created activity."
        }
      ]
    },
    "creationDate": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Timestamp"
        },
        {
          "description": "The date the activity is created."
        }
      ]
    }
  },
  "required": [
    "activityArn",
    "creationDate"
  ]
}