ActivityTaskStatus

Status information about an activity task.

AutomationTask CoordinationWorkflow

Properties

Name Type Description
cancelRequested object
View JSON Schema on GitHub

JSON Schema

amazon-swf-activitytaskstatus-schema.json Raw ↑
{
  "type": "object",
  "required": [
    "cancelRequested"
  ],
  "properties": {
    "cancelRequested": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Canceled"
        },
        {
          "description": "Set to <code>true</code> if cancellation of the task is requested."
        }
      ]
    }
  },
  "description": "Status information about an activity task.",
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "ActivityTaskStatus"
}