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.
974 975 976 977 978 979 |
# File 'gems/aws-sdk-sqs/lib/aws-sdk-sqs/types.rb', line 974 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.
974 975 976 977 978 979 |
# File 'gems/aws-sdk-sqs/lib/aws-sdk-sqs/types.rb', line 974 class ListQueuesResult < Struct.new( :queue_urls, :next_token) SENSITIVE = [] include Aws::Structure end |