2021-10-22 17:47:29 -04:00
|
|
|
"""Pagination control model for Route53."""
|
2021-12-08 14:42:08 -01:00
|
|
|
from .exceptions import InvalidPaginationToken
|
2021-10-22 17:47:29 -04:00
|
|
|
|
|
|
|
PAGINATION_MODEL = {
|
|
|
|
"list_query_logging_configs": {
|
|
|
|
"input_token": "next_token",
|
|
|
|
"limit_key": "max_results",
|
|
|
|
"limit_default": 100,
|
2021-12-03 15:33:35 -01:00
|
|
|
"unique_attribute": "hosted_zone_id",
|
2021-12-08 14:42:08 -01:00
|
|
|
"fail_on_invalid_token": InvalidPaginationToken,
|
2021-10-22 17:47:29 -04:00
|
|
|
},
|
|
|
|
}
|