GetActivityTaskOutput

GetActivityTaskOutput schema from Amazon Step Functions API

OrchestrationServerlessState MachineWorkflow

Properties

Name Type Description
taskToken object
input object
View JSON Schema on GitHub

JSON Schema

amazon-step-functions-get-activity-task-output-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-get-activity-task-output-schema.json",
  "title": "GetActivityTaskOutput",
  "description": "GetActivityTaskOutput schema from Amazon Step Functions API",
  "type": "object",
  "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."
        }
      ]
    }
  }
}