MarkerRecordedEventAttributes

Provides the details of the MarkerRecorded event.

AutomationTask CoordinationWorkflow

Properties

Name Type Description
markerName object
details object
decisionTaskCompletedEventId object
View JSON Schema on GitHub

JSON Schema

amazon-swf-markerrecordedeventattributes-schema.json Raw ↑
{
  "type": "object",
  "required": [
    "markerName",
    "decisionTaskCompletedEventId"
  ],
  "properties": {
    "markerName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/MarkerName"
        },
        {
          "description": "The name of the marker."
        }
      ]
    },
    "details": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Data"
        },
        {
          "description": "The details of the marker."
        }
      ]
    },
    "decisionTaskCompletedEventId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/EventId"
        },
        {
          "description": "The ID of the <code>DecisionTaskCompleted</code> event corresponding to the decision task that resulted in the <code>RecordMarker</code> decision that requested this marker. 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>MarkerRecorded</code> event.",
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "MarkerRecordedEventAttributes"
}