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.

Warning

Route 53 Global Resolver is a global service that supports resolvers in multiple Amazon Web Services Regions but you must specify the US East (Ohio) Region to create, update, or otherwise work with Route 53 Global Resolver resources. That is, for example, specify --region us-east-2 on Amazon Web Services CLI commands.

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.InternalServerException

  • Route53GlobalResolver.Client.exceptions.ValidationException

  • Route53GlobalResolver.Client.exceptions.AccessDeniedException

  • Route53GlobalResolver.Client.exceptions.ThrottlingException

  • Route53GlobalResolver.Client.exceptions.ResourceNotFoundException