Class: Aws::Lambda::Types::DeadLetterConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lambda::Types::DeadLetterConfig
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-lambda/types.rb
Overview
The [dead-letter queue] for failed asynchronous invocations.
[1]: docs.aws.amazon.com/lambda/latest/dg/invocation-async.html#dlq
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#target_arn ⇒ String
The Amazon Resource Name (ARN) of an Amazon SQS queue or Amazon SNS topic.
Instance Attribute Details
#target_arn ⇒ String
The Amazon Resource Name (ARN) of an Amazon SQS queue or Amazon SNS topic.
1311 1312 1313 1314 1315 |
# File 'lib/aws-sdk-lambda/types.rb', line 1311 class DeadLetterConfig < Struct.new( :target_arn) SENSITIVE = [] include Aws::Structure end |