moto/moto/amp/utils.py
2022-09-01 19:07:57 +00:00

15 lines
476 B
Python

PAGINATION_MODEL = {
"list_workspaces": {
"input_token": "next_token",
"limit_key": "max_results",
"limit_default": 100, # This should be the sum of the directory limits
"unique_attribute": "arn",
},
"list_rule_groups_namespaces": {
"input_token": "next_token",
"limit_key": "max_results",
"limit_default": 100, # This should be the sum of the directory limits
"unique_attribute": "name",
},
}