Class: Aws::SQS::Types::ListDeadLetterSourceQueuesResult
- Inherits:
-
Struct
- Object
- Struct
- Aws::SQS::Types::ListDeadLetterSourceQueuesResult
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-sqs/types.rb
Overview
A list of your dead letter source queues.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#next_token ⇒ String
Pagination token to include in the next request.
-
#queue_urls ⇒ Array<String>
A list of source queue URLs that have the
RedrivePolicyqueue attribute configured with a dead-letter queue.
Instance Attribute Details
#next_token ⇒ String
Pagination token to include in the next request. Token value is
null if there are no additional results to request, or if you did
not set MaxResults in the request.
1168 1169 1170 1171 1172 1173 |
# File 'lib/aws-sdk-sqs/types.rb', line 1168 class ListDeadLetterSourceQueuesResult < Struct.new( :queue_urls, :next_token) SENSITIVE = [] include Aws::Structure end |
#queue_urls ⇒ Array<String>
A list of source queue URLs that have the RedrivePolicy queue
attribute configured with a dead-letter queue.
1168 1169 1170 1171 1172 1173 |
# File 'lib/aws-sdk-sqs/types.rb', line 1168 class ListDeadLetterSourceQueuesResult < Struct.new( :queue_urls, :next_token) SENSITIVE = [] include Aws::Structure end |