Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SQS ListQueues pagination fix #6

Draft
wants to merge 3 commits into
base: v0.3.3
Choose a base branch
from
Draft

SQS ListQueues pagination fix #6

wants to merge 3 commits into from

Conversation

akshit-sawhney
Copy link

  • Adds the fix for pagination

Updated contract:

export interface ListQueuesRequest {
    /**
     * A string to use for filtering the list results. Only those queues whose name begins with the specified string are returned. Queue URLs and names are case-sensitive.
     */
    QueueNamePrefix?: String;
    /**
     * Pagination token to request the next set of results.
     */
    NextToken?: Token;
    /**
     * 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.
     */
    MaxResults?: BoxedInteger;
  }

- Adds default maxResults key
- Bumps library version
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant