Class: Aws::Lambda::Types::DeadLetterConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lambda::Types::DeadLetterConfig
- 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 Amazon Resource Name (ARN) of an Amazon SQS queue or Amazon SNS topic you specify as your Dead Letter Queue (DLQ). For more information, see dlq.
Instance Attribute Summary collapse
-
#target_arn ⇒ String
The Amazon Resource Name (ARN) of an Amazon SQS queue or Amazon SNS topic you specify as your Dead Letter Queue (DLQ).
Instance Attribute Details
#target_arn ⇒ String
The Amazon Resource Name (ARN) of an Amazon SQS queue or Amazon SNS topic you specify as your Dead Letter Queue (DLQ). dlq. For more information, see dlq.
645 646 647 648 |
# File 'lib/aws-sdk-lambda/types.rb', line 645 class DeadLetterConfig < Struct.new( :target_arn) include Aws::Structure end |