Class: Aws::Lambda::Types::DeadLetterConfig

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-lambda/types.rb

Overview

Note:

When making an API call, you may pass DeadLetterConfig data as a hash:

{
  target_arn: "ResourceArn",
}

The [dead letter queue] for failed asynchronous invocations.

[1]: docs.aws.amazon.com/lambda/latest/dg/dlq.html

Instance Attribute Summary collapse

Instance Attribute Details

#target_arnString

The Amazon Resource Name (ARN) of an Amazon SQS queue or Amazon SNS topic.

Returns:

  • (String)


680
681
682
683
# File 'lib/aws-sdk-lambda/types.rb', line 680

class DeadLetterConfig < Struct.new(
  :target_arn)
  include Aws::Structure
end