Class: Aws::SQS::Types::ListDeadLetterSourceQueuesRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::SQS::Types::ListDeadLetterSourceQueuesRequest
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-sqs/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max_results ⇒ Integer
Maximum number of results to include in the response.
-
#next_token ⇒ String
Pagination token to request the next set of results.
-
#queue_url ⇒ String
The URL of a dead-letter queue.
Instance Attribute Details
#max_results ⇒ Integer
Maximum number of results to include in the response. Value range is 1 to 1000. You must set ‘MaxResults` to receive a value for `NextToken` in the response.
1147 1148 1149 1150 1151 1152 1153 |
# File 'lib/aws-sdk-sqs/types.rb', line 1147 class ListDeadLetterSourceQueuesRequest < Struct.new( :queue_url, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
Pagination token to request the next set of results.
1147 1148 1149 1150 1151 1152 1153 |
# File 'lib/aws-sdk-sqs/types.rb', line 1147 class ListDeadLetterSourceQueuesRequest < Struct.new( :queue_url, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#queue_url ⇒ String
The URL of a dead-letter queue.
Queue URLs and names are case-sensitive.
1147 1148 1149 1150 1151 1152 1153 |
# File 'lib/aws-sdk-sqs/types.rb', line 1147 class ListDeadLetterSourceQueuesRequest < Struct.new( :queue_url, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |