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 parent object that contains the target ARN (Amazon Resource Name) of an Amazon SQS queue or Amazon SNS topic.
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).
550 551 552 553 |
# File 'lib/aws-sdk-lambda/types.rb', line 550 class DeadLetterConfig < Struct.new( :target_arn) include Aws::Structure end |