StartLambdaFunctionFailedEventAttributes

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

AutomationTask CoordinationWorkflow

Properties

Name Type Description
scheduledEventId object
cause object
message object
View JSON Schema on GitHub

JSON Schema

amazon-swf-startlambdafunctionfailedeventattributes-schema.json Raw ↑
{
  "type": "object",
  "properties": {
    "scheduledEventId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/EventId"
        },
        {
          "description": "The ID of the <code>ActivityTaskScheduled</code> event that was recorded when this activity task was scheduled. To help diagnose issues, use this information to trace back the chain of events leading up to this event."
        }
      ]
    },
    "cause": {
      "allOf": [
        {
          "$ref": "#/components/schemas/StartLambdaFunctionFailedCause"
        },
        {
          "description": "<p>The cause of the failure. To help diagnose issues, use this information to trace back the chain of events leading up to this event.</p> <note> <p>If <code>cause</code> is set to <code>OPERATION_NOT_PERMITTED</code>, the decision failed because the IAM role attached to the execution lacked sufficient permissions. For details and example IAM policies, see <a href=\"https://docs.aws.amazon.com/amazonswf/latest/developerguide/lambda-task.html\">Lambda Tasks</a> in the <i>Amazon SWF Developer Guide</i>.</p> </note>"
        }
      ]
    },
    "message": {
      "allOf": [
        {
          "$ref": "#/components/schemas/CauseMessage"
        },
        {
          "description": "A description that can help diagnose the cause of the fault."
        }
      ]
    }
  },
  "description": "Provides the details of the <code>StartLambdaFunctionFailed</code> event. It isn't set for other event types.",
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "StartLambdaFunctionFailedEventAttributes"
}