RecordActivityTaskHeartbeatInput

AutomationTask CoordinationWorkflow

Properties

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

JSON Schema

amazon-swf-recordactivitytaskheartbeatinput-schema.json Raw ↑
{
  "type": "object",
  "required": [
    "taskToken"
  ],
  "title": "RecordActivityTaskHeartbeatInput",
  "properties": {
    "taskToken": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TaskToken"
        },
        {
          "description": "<p>The <code>taskToken</code> of the <a>ActivityTask</a>.</p> <important> <p> <code>taskToken</code> is generated by the service and should be treated as an opaque value. If the task is passed to another process, its <code>taskToken</code> must also be passed. This enables it to provide its progress and respond with results. </p> </important>"
        }
      ]
    },
    "details": {
      "allOf": [
        {
          "$ref": "#/components/schemas/LimitedData"
        },
        {
          "description": "If specified, contains details about the progress of the task."
        }
      ]
    }
  },
  "$schema": "http://json-schema.org/draft-07/schema#"
}