Route53GlobalResolver / Client / list_firewall_domain_lists
list_firewall_domain_lists¶
- Route53GlobalResolver.Client.list_firewall_domain_lists(**kwargs)¶
Lists all firewall domain lists for a Route 53 Global Resolver with pagination support.
See also: AWS API Documentation
Request Syntax
response = client.list_firewall_domain_lists( maxResults=123, nextToken='string', globalResolverId='string' )
- Parameters:
maxResults (integer) – The maximum number of results to retrieve in a single call.
nextToken (string) – A pagination token used for large sets of results that can’t be returned in a single response.
globalResolverId (string) – The ID of the Global Resolver that contains the DNS view the domain lists are associated to.
- Return type:
dict
- Returns:
Response Syntax
{ 'nextToken': 'string', '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) }, ] }
Response Structure
(dict) –
nextToken (string) –
A pagination token used for large sets of results that can’t be returned in a single response. Provide this token in the next call to get the results not returned in this call.
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.
Exceptions
Route53GlobalResolver.Client.exceptions.InternalServerExceptionRoute53GlobalResolver.Client.exceptions.ValidationExceptionRoute53GlobalResolver.Client.exceptions.AccessDeniedExceptionRoute53GlobalResolver.Client.exceptions.ThrottlingExceptionRoute53GlobalResolver.Client.exceptions.ResourceNotFoundException