diff --git a/awscli/customizations/paginate.py b/awscli/customizations/paginate.py index 3bae390d7b18..b952132a106d 100644 --- a/awscli/customizations/paginate.py +++ b/awscli/customizations/paginate.py @@ -194,7 +194,7 @@ def add_paging_argument(argument_table, arg_name, argument, shadowed_args): def check_should_enable_pagination(input_tokens, shadowed_args, argument_table, parsed_args, parsed_globals, **kwargs): - normalized_paging_args = ['start_token', 'max_items'] + normalized_paging_args = ['starting_token', 'page_size', 'max_items'] for token in input_tokens: py_name = token.replace('-', '_') if getattr(parsed_args, py_name) is not None and \