Skip to content

Send Durable Execution Callback Failure

lambda_send_durable_execution_callback_failure R Documentation

Sends a failure response for a callback operation in a durable execution

Description

Sends a failure response for a callback operation in a durable execution. Use this API when an external system cannot complete a callback operation successfully.

Usage

lambda_send_durable_execution_callback_failure(CallbackId, Error)

Arguments

CallbackId

[required] The unique identifier for the callback operation.

Error

Error details describing why the callback operation failed.

Value

An empty list.

Request syntax

svc$send_durable_execution_callback_failure(
  CallbackId = "string",
  Error = list(
    ErrorMessage = "string",
    ErrorType = "string",
    ErrorData = "string",
    StackTrace = list(
      "string"
    )
  )
)