Amazon Step Functions · JSON Structure

Amazon Step Functions Get Activity Task Output Structure

GetActivityTaskOutput schema from Amazon Step Functions API

Type: object Properties: 2
OrchestrationServerlessState MachineWorkflow

GetActivityTaskOutput is a JSON Structure definition published by Amazon Step Functions, describing 2 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

taskToken input

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-get-activity-task-output-structure.json",
  "name": "GetActivityTaskOutput",
  "description": "GetActivityTaskOutput schema from Amazon Step Functions API",
  "properties": {
    "taskToken": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TaskToken"
        },
        {
          "description": "A token that identifies the scheduled task. This token must be copied and included in subsequent calls to <a>SendTaskHeartbeat</a>, <a>SendTaskSuccess</a> or <a>SendTaskFailure</a> in order to report the progress or completion of the task."
        }
      ]
    },
    "input": {
      "allOf": [
        {
          "$ref": "#/components/schemas/SensitiveDataJobInput"
        },
        {
          "description": "The string that contains the JSON input data for the task. Length constraints apply to the payload size, and are expressed as bytes in UTF-8 encoding."
        }
      ]
    }
  }
}