DecisionTaskStartedEventAttributes

Provides the details of the DecisionTaskStarted event.

AutomationTask CoordinationWorkflow

Properties

Name Type Description
identity object
scheduledEventId object
View JSON Schema on GitHub

JSON Schema

amazon-swf-decisiontaskstartedeventattributes-schema.json Raw ↑
{
  "type": "object",
  "required": [
    "scheduledEventId"
  ],
  "properties": {
    "identity": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Identity"
        },
        {
          "description": "Identity of the decider making the request. This enables diagnostic tracing when problems arise. The form of this identity is user defined."
        }
      ]
    },
    "scheduledEventId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/EventId"
        },
        {
          "description": "The ID of the <code>DecisionTaskScheduled</code> event that was recorded when this decision task was scheduled. This information can be useful for diagnosing problems by tracing back the chain of events leading up to this event."
        }
      ]
    }
  },
  "description": "Provides the details of the <code>DecisionTaskStarted</code> event.",
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "DecisionTaskStartedEventAttributes"
}