Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add missing pagination definitions for CloudWatch Events
There are currently no pagination definitions for CloudWatch Events APIs. I've created them from the API Reference for this PR. The list of definitions now matches the API reference and also the list missing in boto#1462. ```python client = boto3.client('events', region_name='eu-west-1') paginator = client.get_paginator('list_rules') page_iterator = paginator.paginate(NamePrefix='RDS', PaginationConfig={'PageSize': 2}) for page in page_iterator: print(page) ```
- Loading branch information