LambdaFunctionCompletedEventAttributes

Provides the details of the LambdaFunctionCompleted event. It isn't set for other event types.

AutomationTask CoordinationWorkflow

Properties

Name Type Description
scheduledEventId object
startedEventId object
result object
View JSON Schema on GitHub

JSON Schema

amazon-swf-lambdafunctioncompletedeventattributes-schema.json Raw ↑
{
  "type": "object",
  "required": [
    "scheduledEventId",
    "startedEventId"
  ],
  "properties": {
    "scheduledEventId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/EventId"
        },
        {
          "description": "The ID of the <code>LambdaFunctionScheduled</code> event that was recorded when this Lambda task was scheduled. To help diagnose issues, use this information to trace back the chain of events leading up to this event."
        }
      ]
    },
    "startedEventId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/EventId"
        },
        {
          "description": "The ID of the <code>LambdaFunctionStarted</code> event recorded when this activity task started. To help diagnose issues, use this information to trace back the chain of events leading up to this event."
        }
      ]
    },
    "result": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Data"
        },
        {
          "description": "The results of the Lambda task."
        }
      ]
    }
  },
  "description": "Provides the details of the <code>LambdaFunctionCompleted</code> event. It isn't set for other event types.",
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "LambdaFunctionCompletedEventAttributes"
}