Route53Resolver / Paginator / ListFirewallConfigs
ListFirewallConfigs#
- class Route53Resolver.Paginator.ListFirewallConfigs#
- paginator = client.get_paginator('list_firewall_configs') - paginate(**kwargs)#
- Creates an iterator that will paginate through responses from - Route53Resolver.Client.list_firewall_configs().- See also: AWS API Documentation - Request Syntax- response_iterator = paginator.paginate( PaginationConfig={ 'MaxItems': 123, 'PageSize': 123, 'StartingToken': 'string' } ) - Parameters:
- 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- { 'FirewallConfigs': [ { 'Id': 'string', 'ResourceId': 'string', 'OwnerId': 'string', 'FirewallFailOpen': 'ENABLED'|'DISABLED'|'USE_LOCAL_RESOURCE_SETTING' }, ] } - Response Structure- (dict) – - FirewallConfigs (list) – - The configurations for the firewall behavior provided by DNS Firewall for VPCs from Amazon Virtual Private Cloud (Amazon VPC). - (dict) – - Configuration of the firewall behavior provided by DNS Firewall for a single VPC from Amazon Virtual Private Cloud (Amazon VPC). - Id (string) – - The ID of the firewall configuration. 
- ResourceId (string) – - The ID of the VPC that this firewall configuration applies to. 
- OwnerId (string) – - The Amazon Web Services account ID of the owner of the VPC that this firewall configuration applies to. 
- FirewallFailOpen (string) – - Determines how DNS Firewall operates during failures, for example when all traffic that is sent to DNS Firewall fails to receive a reply. - By default, fail open is disabled, which means the failure mode is closed. This approach favors security over availability. DNS Firewall returns a failure error when it is unable to properly evaluate a query. 
- If you enable this option, the failure mode is open. This approach favors availability over security. DNS Firewall allows queries to proceed if it is unable to properly evaluate them. 
 - This behavior is only enforced for VPCs that have at least one DNS Firewall rule group association.