ActivityTaskTimedOutEventAttributes

Provides the details of the ActivityTaskTimedOut event.

AutomationTask CoordinationWorkflow

Properties

Name Type Description
timeoutType object
scheduledEventId object
startedEventId object
details object
View JSON Schema on GitHub

JSON Schema

amazon-swf-activitytasktimedouteventattributes-schema.json Raw ↑
{
  "type": "object",
  "required": [
    "timeoutType",
    "scheduledEventId",
    "startedEventId"
  ],
  "properties": {
    "timeoutType": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ActivityTaskTimeoutType"
        },
        {
          "description": "The type of the timeout that caused this event."
        }
      ]
    },
    "scheduledEventId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/EventId"
        },
        {
          "description": "The ID of the <code>ActivityTaskScheduled</code> event that was recorded when this activity task was scheduled. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event."
        }
      ]
    },
    "startedEventId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/EventId"
        },
        {
          "description": "The ID of the <code>ActivityTaskStarted</code> event recorded when this activity task was started. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event."
        }
      ]
    },
    "details": {
      "allOf": [
        {
          "$ref": "#/components/schemas/LimitedData"
        },
        {
          "description": "Contains the content of the <code>details</code> parameter for the last call made by the activity to <code>RecordActivityTaskHeartbeat</code>."
        }
      ]
    }
  },
  "description": "Provides the details of the <code>ActivityTaskTimedOut</code> event.",
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "ActivityTaskTimedOutEventAttributes"
}