Class: Aws::Pipes::Types::DeadLetterConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::Pipes::Types::DeadLetterConfig
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-pipes/types.rb
Overview
A ‘DeadLetterConfig` object that contains information about a dead-letter queue configuration.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#arn ⇒ String
The ARN of the specified target for the dead-letter queue.
Instance Attribute Details
#arn ⇒ String
The ARN of the specified target for the dead-letter queue.
For Amazon Kinesis stream and Amazon DynamoDB stream sources, specify either an Amazon SNS topic or Amazon SQS queue ARN.
590 591 592 593 594 |
# File 'lib/aws-sdk-pipes/types.rb', line 590 class DeadLetterConfig < Struct.new( :arn) SENSITIVE = [] include Aws::Structure end |