Amazon Step Functions · JSON Structure

Amazon Step Functions Lambda Function Failed Event Details Structure

Contains details about a Lambda function that failed during an execution.

Type: object Properties: 2
OrchestrationServerlessState MachineWorkflow

LambdaFunctionFailedEventDetails is a JSON Structure definition published by Amazon Step Functions, describing 2 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

error cause

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "type": "object",
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-step-functions/refs/heads/main/json-structure/amazon-step-functions-lambda-function-failed-event-details-structure.json",
  "name": "LambdaFunctionFailedEventDetails",
  "description": "Contains details about a Lambda function that failed during an execution.",
  "properties": {
    "error": {
      "allOf": [
        {
          "$ref": "#/components/schemas/SensitiveError"
        },
        {
          "description": "The error code of the failure."
        }
      ]
    },
    "cause": {
      "allOf": [
        {
          "$ref": "#/components/schemas/SensitiveCause"
        },
        {
          "description": "A more detailed explanation of the cause of the failure."
        }
      ]
    }
  }
}