Class: Aws::Scheduler::Types::DeadLetterConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::Scheduler::Types::DeadLetterConfig
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-scheduler/types.rb
Overview
An object that contains information about an Amazon SQS queue that EventBridge Scheduler uses as a dead-letter queue for your schedule. If specified, EventBridge Scheduler delivers failed events that could not be successfully delivered to a target to the queue.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#arn ⇒ String
The Amazon Resource Name (ARN) of the SQS queue specified as the destination for the dead-letter queue.
Instance Attribute Details
#arn ⇒ String
The Amazon Resource Name (ARN) of the SQS queue specified as the destination for the dead-letter queue.
270 271 272 273 274 |
# File 'lib/aws-sdk-scheduler/types.rb', line 270 class DeadLetterConfig < Struct.new( :arn) SENSITIVE = [] include Aws::Structure end |