Class: Aws::Lambda::Types::DeadLetterConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lambda::Types::DeadLetterConfig
- Defined in:
- gems/aws-sdk-lambda/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.
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.
1040 1041 1042 1043 1044 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 1040 class DeadLetterConfig < Struct.new( :target_arn) SENSITIVE = [] include Aws::Structure end |