Route53GlobalResolver / Paginator / ListFirewallDomainLists
ListFirewallDomainLists¶
- class Route53GlobalResolver.Paginator.ListFirewallDomainLists¶
paginator = client.get_paginator('list_firewall_domain_lists')
- paginate(**kwargs)¶
Creates an iterator that will paginate through responses from
Route53GlobalResolver.Client.list_firewall_domain_lists().See also: AWS API Documentation
Request Syntax
response_iterator = paginator.paginate( globalResolverId='string', PaginationConfig={ 'MaxItems': 123, 'PageSize': 123, 'StartingToken': 'string' } )
- Parameters:
globalResolverId (string) – The ID of the Global Resolver that contains the DNS view the domain lists are associated to.
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
{ 'firewallDomainLists': [ { 'arn': 'string', 'globalResolverId': 'string', 'createdAt': datetime(2015, 1, 1), 'description': 'string', 'id': 'string', 'name': 'string', 'status': 'CREATING'|'OPERATIONAL'|'UPDATING'|'DELETING', 'updatedAt': datetime(2015, 1, 1) }, ], 'NextToken': 'string' }
Response Structure
(dict) –
firewallDomainLists (list) –
List of the DNS Firewall domain lists.
(dict) –
Summary information about a firewall domain list.
arn (string) –
The Amazon Resource Name (ARN) of the firewall domain list.
globalResolverId (string) –
The ID of the global resolver that the firewall domain list is associated with.
createdAt (datetime) –
The date and time when the firewall domain list was created.
description (string) –
A description of the firewall domain list.
id (string) –
The unique identifier of the firewall domain list.
name (string) –
The name of the firewall domain list.
status (string) –
The current status of the firewall domain list.
updatedAt (datetime) –
The date and time when the firewall domain list was last updated.
NextToken (string) –
A token to resume pagination.