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

Update stale docs around MissingPaginatedTrait #1814

Merged
merged 1 commit into from
Jun 8, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions docs/source-2.0/guides/model-linters.rst
Original file line number Diff line number Diff line change
Expand Up @@ -642,14 +642,16 @@ Configuration
indicate that an operation MUST be paginated. A ``DANGER`` event
is emitted if an operation is found to have an input member name
that case-insensitively matches one of these member names.
Defaults to ``["maxResults", "pageSize", "limit", "nextToken", "pageToken", "token"]``
Defaults to ``["maxresults", "maxitems", "pagesize", "limit",
"nexttoken", "pagetoken", "token", "marker"]``
* - outputMembersRequirePagination
- [``string``]
- Defines the case-insensitive operation output member names that
indicate that an operation MUST be paginated. A ``DANGER`` event
is emitted if an operation is found to have an output member name
that case-insensitively matches one of these member names.
Defaults to ``["nextToken", "pageToken", "token", "marker", "nextPage"]``.
Defaults to ``["nexttoken", "pagetoken", "token", "marker", "nextpage", "nextpagetoken", "position", "nextmarker",
"paginationtoken", "nextpagemarker"]``.

Example:

Expand Down