MCPcopy Create free account
hub / github.com/aws/aws-cli / _get_all_cli_input_tokens

Function _get_all_cli_input_tokens

awscli/customizations/paginate.py:308–318  ·  view source on GitHub ↗
(pagination_config)

Source from the content-addressed store, hash-verified

306
307
308def _get_all_cli_input_tokens(pagination_config):
309 # Get all input tokens including the limit_key
310 # if it exists.
311 tokens = _get_input_tokens(pagination_config)
312 for token_name in tokens:
313 cli_name = xform_name(token_name, '-')
314 yield cli_name
315 if 'limit_key' in pagination_config:
316 key_name = pagination_config['limit_key']
317 cli_name = xform_name(key_name, '-')
318 yield cli_name
319
320
321# Get all tokens but return them in API namespace rather than CLI namespace

Callers 2

unify_paging_paramsFunction · 0.85

Calls 2

xform_nameFunction · 0.90
_get_input_tokensFunction · 0.85

Tested by

no test coverage detected