Route53GlobalResolver / Paginator / ListAccessSources
ListAccessSources¶
- class Route53GlobalResolver.Paginator.ListAccessSources¶
paginator = client.get_paginator('list_access_sources')
- paginate(**kwargs)¶
Creates an iterator that will paginate through responses from
Route53GlobalResolver.Client.list_access_sources().See also: AWS API Documentation
Request Syntax
response_iterator = paginator.paginate( filters={ 'string': [ 'string', ] }, PaginationConfig={ 'MaxItems': 123, 'PageSize': 123, 'StartingToken': 'string' } )
- Parameters:
filters (dict) –
Values to filter the results.
(string) –
(list) –
(string) –
PaginationConfig (dict) –
A dictionary that provides parameters to control pagination.
MaxItems (integer) –
The total number of items to return. If the total number of items available is more than the value specified in max-items then a
NextTokenwill be provided in the output that you can use to resume pagination.PageSize (integer) –
The size of each page.
StartingToken (string) –
A token to specify where to start paginating. This is the
NextTokenfrom a previous response.
- Return type:
dict
- Returns:
Response Syntax
{ 'accessSources': [ { 'arn': 'string', 'cidr': 'string', 'createdAt': datetime(2015, 1, 1), 'id': 'string', 'ipAddressType': 'IPV4'|'IPV6', 'name': 'string', 'dnsViewId': 'string', 'protocol': 'DO53'|'DOH'|'DOT', 'status': 'CREATING'|'OPERATIONAL'|'UPDATING'|'DELETING', 'updatedAt': datetime(2015, 1, 1) }, ], 'NextToken': 'string' }
Response Structure
(dict) –
accessSources (list) –
An array containing information about the access sources, such as the ID, CIDR etc.
(dict) –
Summary information about an access source.
arn (string) –
The Amazon Resource Name (ARN) of the access source.
cidr (string) –
The CIDR block that defines the IP address range for the access source.
createdAt (datetime) –
The date and time when the access source was created.
id (string) –
The unique identifier of the access source.
ipAddressType (string) –
The IP address type of the access source.
name (string) –
The name of the access source.
dnsViewId (string) –
The ID of the DNS view that the access source is associated with.
protocol (string) –
The protocol used by the access source.
status (string) –
The current status of the access source.
updatedAt (datetime) –
The date and time when the access source was last updated.
NextToken (string) –
A token to resume pagination.