ISQSListQueuesResponse
Interface in AWS.SQS
Interface for ListQueues responses.
Ancestors
Properties
NextToken
property NextToken: string
The pagination token to include in the next request to retrieve additional results.
This token is returned when there are more queues available beyond the current page. Use this exact token value in the NextToken parameter of a subsequent ListQueues request to continue pagination. If this field is empty or not present, it indicates that all available results have been returned and there are no more pages to retrieve. Pagination tokens are opaque strings that should not be modified or constructed manually. They are only valid for the specific query context and may expire after a period of time.
QueueUrls
property QueueUrls: TList<string>
A collection of queue URLs for all queues owned by the requester.
Each URL in this collection represents a queue in the current region that matches the specified criteria (prefix filter if provided). The URLs are returned in their complete form and can be used directly for subsequent SQS operations such as sending messages, receiving messages, or modifying queue attributes. If no queues are found that match the criteria, this collection will be empty. The number of URLs returned is limited by the MaxResults parameter from the request, with a maximum of 1000 URLs per response by default. Queue URLs follow the format: https://sqs.{region}.amazonaws.com/{account-id}/{queue-name}