Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ListQueuesResult

import type { ListQueuesResult } from "https://aws-api.deno.dev/v0.3/services/sqs.ts?docs=full";

A list of your queues.

interface ListQueuesResult {
NextToken?: string | null;
QueueUrls: string[];
}

§Properties

§
NextToken?: string | null
[src]

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.

§
QueueUrls: string[]
[src]

A list of queue URLs, up to 1,000 entries, or the value of MaxResults that you sent in the request.