ActivityScheduledEventDetails

Contains details about an activity scheduled during an execution.

OrchestrationServerlessState MachineWorkflow

Properties

Name Type Description
resource object
input object
inputDetails object
timeoutInSeconds object
heartbeatInSeconds object
View JSON Schema on GitHub

JSON Schema

amazon-step-functions-activity-scheduled-event-details-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-activity-scheduled-event-details-schema.json",
  "title": "ActivityScheduledEventDetails",
  "description": "Contains details about an activity scheduled during an execution.",
  "type": "object",
  "properties": {
    "resource": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Arn"
        },
        {
          "description": "The Amazon Resource Name (ARN) of the scheduled activity."
        }
      ]
    },
    "input": {
      "allOf": [
        {
          "$ref": "#/components/schemas/SensitiveData"
        },
        {
          "description": "The JSON data input to the activity task. Length constraints apply to the payload size, and are expressed as bytes in UTF-8 encoding."
        }
      ]
    },
    "inputDetails": {
      "allOf": [
        {
          "$ref": "#/components/schemas/HistoryEventExecutionDataDetails"
        },
        {
          "description": "Contains details about the input for an execution history event."
        }
      ]
    },
    "timeoutInSeconds": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TimeoutInSeconds"
        },
        {
          "description": "The maximum allowed duration of the activity task."
        }
      ]
    },
    "heartbeatInSeconds": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TimeoutInSeconds"
        },
        {
          "description": "The maximum allowed duration between two heartbeats for the activity task."
        }
      ]
    }
  },
  "required": [
    "resource"
  ]
}