Class: Aws::SQS::Types::ListQueuesResult
- Inherits:
-
Struct
- Object
- Struct
- Aws::SQS::Types::ListQueuesResult
- Defined in:
- gems/aws-sdk-sqs/lib/aws-sdk-sqs/types.rb
Overview
A list of your 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 queue URLs, up to 1,000 entries, or the value of
MaxResults
that you sent in the request.
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.
1344 1345 1346 1347 1348 1349 |
# File 'gems/aws-sdk-sqs/lib/aws-sdk-sqs/types.rb', line 1344 class ListQueuesResult < Struct.new( :queue_urls, :next_token) SENSITIVE = [] include Aws::Structure end |
#queue_urls ⇒ Array<String>
A list of queue URLs, up to 1,000 entries, or the value of
MaxResults
that you sent in the request.
1344 1345 1346 1347 1348 1349 |
# File 'gems/aws-sdk-sqs/lib/aws-sdk-sqs/types.rb', line 1344 class ListQueuesResult < Struct.new( :queue_urls, :next_token) SENSITIVE = [] include Aws::Structure end |