NetworkFirewall *************** Client ====== class NetworkFirewall.Client A low-level client representing AWS Network Firewall This is the API Reference for Network Firewall. This guide is for developers who need detailed information about the Network Firewall API actions, data types, and errors. The REST API requires you to handle connection details, such as calculating signatures, handling request retries, and error handling. For general information about using the Amazon Web Services REST APIs, see Amazon Web Services APIs. To view the complete list of Amazon Web Services Regions where Network Firewall is available, see Service endpoints and quotas in the *Amazon Web Services General Reference*. To access Network Firewall using the IPv4 REST API endpoint: "https ://network-firewall..amazonaws.com" To access Network Firewall using the Dualstack (IPv4 and IPv6) REST API endpoint: "https://network-firewall..aws.api" Alternatively, you can use one of the Amazon Web Services SDKs to access an API that's tailored to the programming language or platform that you're using. For more information, see Amazon Web Services SDKs. For descriptions of Network Firewall features, including and step- by-step instructions on how to use them through the Network Firewall console, see the Network Firewall Developer Guide. Network Firewall is a stateful, managed, network firewall and intrusion detection and prevention service for Amazon Virtual Private Cloud (Amazon VPC). With Network Firewall, you can filter traffic at the perimeter of your VPC. This includes filtering traffic going to and coming from an internet gateway, NAT gateway, or over VPN or Direct Connect. Network Firewall uses rules that are compatible with Suricata, a free, open source network analysis and threat detection engine. Network Firewall supports Suricata version 7.0.3. For information about Suricata, see the Suricata website and the Suricata User Guide. You can use Network Firewall to monitor and protect your VPC traffic in a number of ways. The following are just a few examples: * Allow domains or IP addresses for known Amazon Web Services service endpoints, such as Amazon S3, and block all other forms of traffic. * Use custom lists of known bad domains to limit the types of domain names that your applications can access. * Perform deep packet inspection on traffic entering or leaving your VPC. * Use stateful protocol detection to filter protocols like HTTPS, regardless of the port used. To enable Network Firewall for your VPCs, you perform steps in both Amazon VPC and in Network Firewall. For information about using Amazon VPC, see Amazon VPC User Guide. To start using Network Firewall, do the following: * (Optional) If you don't already have a VPC that you want to protect, create it in Amazon VPC. * In Amazon VPC, in each Availability Zone where you want to have a firewall endpoint, create a subnet for the sole use of Network Firewall. * In Network Firewall, define the firewall behavior as follows: * Create stateless and stateful rule groups, to define the components of the network traffic filtering behavior that you want your firewall to have. * Create a firewall policy that uses your rule groups and specifies additional default traffic filtering behavior. * In Network Firewall, create a firewall and specify your new firewall policy and VPC subnets. Network Firewall creates a firewall endpoint in each subnet that you specify, with the behavior that's defined in the firewall policy. * In Amazon VPC, use ingress routing enhancements to route traffic through the new firewall endpoints. After your firewall is established, you can add firewall endpoints for new Availability Zones by following the prior steps for the Amazon VPC setup and firewall subnet definitions. You can also add endpoints to Availability Zones that you're using in the firewall, either for the same VPC or for another VPC, by following the prior steps for the Amazon VPC setup, and defining the new VPC subnets as VPC endpoint associations. import boto3 client = boto3.client('network-firewall') These are the available methods: * accept_network_firewall_transit_gateway_attachment * associate_availability_zones * associate_firewall_policy * associate_subnets * can_paginate * close * create_firewall * create_firewall_policy * create_rule_group * create_tls_inspection_configuration * create_vpc_endpoint_association * delete_firewall * delete_firewall_policy * delete_network_firewall_transit_gateway_attachment * delete_resource_policy * delete_rule_group * delete_tls_inspection_configuration * delete_vpc_endpoint_association * describe_firewall * describe_firewall_metadata * describe_firewall_policy * describe_flow_operation * describe_logging_configuration * describe_resource_policy * describe_rule_group * describe_rule_group_metadata * describe_rule_group_summary * describe_tls_inspection_configuration * describe_vpc_endpoint_association * disassociate_availability_zones * disassociate_subnets * get_analysis_report_results * get_paginator * get_waiter * list_analysis_reports * list_firewall_policies * list_firewalls * list_flow_operation_results * list_flow_operations * list_rule_groups * list_tags_for_resource * list_tls_inspection_configurations * list_vpc_endpoint_associations * put_resource_policy * reject_network_firewall_transit_gateway_attachment * start_analysis_report * start_flow_capture * start_flow_flush * tag_resource * untag_resource * update_availability_zone_change_protection * update_firewall_analysis_settings * update_firewall_delete_protection * update_firewall_description * update_firewall_encryption_configuration * update_firewall_policy * update_firewall_policy_change_protection * update_logging_configuration * update_rule_group * update_subnet_change_protection * update_tls_inspection_configuration Paginators ========== Paginators are available on a client instance via the "get_paginator" method. For more detailed instructions and examples on the usage of paginators, see the paginators user guide. The available paginators are: * GetAnalysisReportResults * ListAnalysisReports * ListFirewallPolicies * ListFirewalls * ListFlowOperationResults * ListFlowOperations * ListRuleGroups * ListTLSInspectionConfigurations * ListTagsForResource * ListVpcEndpointAssociations NetworkFirewall / Paginator / ListFirewalls ListFirewalls ************* class NetworkFirewall.Paginator.ListFirewalls paginator = client.get_paginator('list_firewalls') paginate(**kwargs) Creates an iterator that will paginate through responses from "NetworkFirewall.Client.list_firewalls()". See also: AWS API Documentation **Request Syntax** response_iterator = paginator.paginate( VpcIds=[ 'string', ], PaginationConfig={ 'MaxItems': 123, 'PageSize': 123, 'StartingToken': 'string' } ) Parameters: * **VpcIds** (*list*) -- The unique identifiers of the VPCs that you want Network Firewall to retrieve the firewalls for. Leave this blank to retrieve all firewalls that you have defined. * *(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 "NextToken" will 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 "NextToken" from a previous response. Return type: dict Returns: **Response Syntax** { 'Firewalls': [ { 'FirewallName': 'string', 'FirewallArn': 'string', 'TransitGatewayAttachmentId': 'string' }, ] } **Response Structure** * *(dict) --* * **Firewalls** *(list) --* The firewall metadata objects for the VPCs that you specified. Depending on your setting for max results and the number of firewalls you have, a single call might not be the full list. * *(dict) --* High-level information about a firewall, returned by operations like create and describe. You can use the information provided in the metadata to retrieve and manage a firewall. * **FirewallName** *(string) --* The descriptive name of the firewall. You can't change the name of a firewall after you create it. * **FirewallArn** *(string) --* The Amazon Resource Name (ARN) of the firewall. * **TransitGatewayAttachmentId** *(string) --* The unique identifier of the transit gateway attachment associated with this firewall. This field is only present for transit gateway-attached firewalls. NetworkFirewall / Paginator / ListTagsForResource ListTagsForResource ******************* class NetworkFirewall.Paginator.ListTagsForResource paginator = client.get_paginator('list_tags_for_resource') paginate(**kwargs) Creates an iterator that will paginate through responses from "NetworkFirewall.Client.list_tags_for_resource()". See also: AWS API Documentation **Request Syntax** response_iterator = paginator.paginate( ResourceArn='string', PaginationConfig={ 'MaxItems': 123, 'PageSize': 123, 'StartingToken': 'string' } ) Parameters: * **ResourceArn** (*string*) -- **[REQUIRED]** The Amazon Resource Name (ARN) of the resource. * **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 "NextToken" will 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 "NextToken" from a previous response. Return type: dict Returns: **Response Syntax** { 'Tags': [ { 'Key': 'string', 'Value': 'string' }, ] } **Response Structure** * *(dict) --* * **Tags** *(list) --* The tags that are associated with the resource. * *(dict) --* A key:value pair associated with an Amazon Web Services resource. The key:value pair can be anything you define. Typically, the tag key represents a category (such as "environment") and the tag value represents a specific value within that category (such as "test," "development," or "production"). You can add up to 50 tags to each Amazon Web Services resource. * **Key** *(string) --* The part of the key:value pair that defines a tag. You can use a tag key to describe a category of information, such as "customer." Tag keys are case- sensitive. * **Value** *(string) --* The part of the key:value pair that defines a tag. You can use a tag value to describe a specific value within a category, such as "companyA" or "companyB." Tag values are case-sensitive. NetworkFirewall / Paginator / ListFlowOperations ListFlowOperations ****************** class NetworkFirewall.Paginator.ListFlowOperations paginator = client.get_paginator('list_flow_operations') paginate(**kwargs) Creates an iterator that will paginate through responses from "NetworkFirewall.Client.list_flow_operations()". See also: AWS API Documentation **Request Syntax** response_iterator = paginator.paginate( FirewallArn='string', AvailabilityZone='string', VpcEndpointAssociationArn='string', VpcEndpointId='string', FlowOperationType='FLOW_FLUSH'|'FLOW_CAPTURE', PaginationConfig={ 'MaxItems': 123, 'PageSize': 123, 'StartingToken': 'string' } ) Parameters: * **FirewallArn** (*string*) -- **[REQUIRED]** The Amazon Resource Name (ARN) of the firewall. * **AvailabilityZone** (*string*) -- The ID of the Availability Zone where the firewall is located. For example, "us-east-2a". Defines the scope a flow operation. You can use up to 20 filters to configure a single flow operation. * **VpcEndpointAssociationArn** (*string*) -- The Amazon Resource Name (ARN) of a VPC endpoint association. * **VpcEndpointId** (*string*) -- A unique identifier for the primary endpoint associated with a firewall. * **FlowOperationType** (*string*) -- An optional string that defines whether any or all operation types are returned. * **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 "NextToken" will 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 "NextToken" from a previous response. Return type: dict Returns: **Response Syntax** { 'FlowOperations': [ { 'FlowOperationId': 'string', 'FlowOperationType': 'FLOW_FLUSH'|'FLOW_CAPTURE', 'FlowRequestTimestamp': datetime(2015, 1, 1), 'FlowOperationStatus': 'COMPLETED'|'IN_PROGRESS'|'FAILED'|'COMPLETED_WITH_ERRORS' }, ], } **Response Structure** * *(dict) --* * **FlowOperations** *(list) --* Flow operations let you manage the flows tracked in the flow table, also known as the firewall table. A flow is network traffic that is monitored by a firewall, either by stateful or stateless rules. For traffic to be considered part of a flow, it must share Destination, DestinationPort, Direction, Protocol, Source, and SourcePort. * *(dict) --* An array of objects with metadata about the requested "FlowOperation". * **FlowOperationId** *(string) --* A unique identifier for the flow operation. This ID is returned in the responses to start and list commands. You provide to describe commands. * **FlowOperationType** *(string) --* Defines the type of "FlowOperation". * **FlowRequestTimestamp** *(datetime) --* A timestamp indicating when the Suricata engine identified flows impacted by an operation. * **FlowOperationStatus** *(string) --* Returns the status of the flow operation. This string is returned in the responses to start, list, and describe commands. If the status is "COMPLETED_WITH_ERRORS", results may be returned with any number of "Flows" missing from the response. If the status is "FAILED", "Flows" returned will be empty. NetworkFirewall / Paginator / ListAnalysisReports ListAnalysisReports ******************* class NetworkFirewall.Paginator.ListAnalysisReports paginator = client.get_paginator('list_analysis_reports') paginate(**kwargs) Creates an iterator that will paginate through responses from "NetworkFirewall.Client.list_analysis_reports()". See also: AWS API Documentation **Request Syntax** response_iterator = paginator.paginate( FirewallName='string', FirewallArn='string', PaginationConfig={ 'MaxItems': 123, 'PageSize': 123, 'StartingToken': 'string' } ) Parameters: * **FirewallName** (*string*) -- The descriptive name of the firewall. You can't change the name of a firewall after you create it. You must specify the ARN or the name, and you can specify both. * **FirewallArn** (*string*) -- The Amazon Resource Name (ARN) of the firewall. You must specify the ARN or the name, and you can specify both. * **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 "NextToken" will 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 "NextToken" from a previous response. Return type: dict Returns: **Response Syntax** { 'AnalysisReports': [ { 'AnalysisReportId': 'string', 'AnalysisType': 'TLS_SNI'|'HTTP_HOST', 'ReportTime': datetime(2015, 1, 1), 'Status': 'string' }, ], } **Response Structure** * *(dict) --* * **AnalysisReports** *(list) --* The "id" and "ReportTime" associated with a requested analysis report. Does not provide the status of the analysis report. * *(dict) --* A report that captures key activity from the last 30 days of network traffic monitored by your firewall. You can generate up to one report per traffic type, per 30 day period. For example, when you successfully create an HTTP traffic report, you cannot create another HTTP traffic report until 30 days pass. Alternatively, if you generate a report that combines metrics on both HTTP and HTTPS traffic, you cannot create another report for either traffic type until 30 days pass. * **AnalysisReportId** *(string) --* The unique ID of the query that ran when you requested an analysis report. * **AnalysisType** *(string) --* The type of traffic that will be used to generate a report. * **ReportTime** *(datetime) --* The date and time the analysis report was ran. * **Status** *(string) --* The status of the analysis report you specify. Statuses include "RUNNING", "COMPLETED", or "FAILED". NetworkFirewall / Paginator / ListVpcEndpointAssociations ListVpcEndpointAssociations *************************** class NetworkFirewall.Paginator.ListVpcEndpointAssociations paginator = client.get_paginator('list_vpc_endpoint_associations') paginate(**kwargs) Creates an iterator that will paginate through responses from "NetworkFirewall.Client.list_vpc_endpoint_associations()". See also: AWS API Documentation **Request Syntax** response_iterator = paginator.paginate( FirewallArn='string', PaginationConfig={ 'MaxItems': 123, 'PageSize': 123, 'StartingToken': 'string' } ) Parameters: * **FirewallArn** (*string*) -- The Amazon Resource Name (ARN) of the firewall. If you don't specify this, Network Firewall retrieves all VPC endpoint associations that you have defined. * **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 "NextToken" will 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 "NextToken" from a previous response. Return type: dict Returns: **Response Syntax** { 'VpcEndpointAssociations': [ { 'VpcEndpointAssociationArn': 'string' }, ] } **Response Structure** * *(dict) --* * **VpcEndpointAssociations** *(list) --* The VPC endpoint assocation metadata objects for the firewall that you specified. If you didn't specify a firewall, this is all VPC endpoint associations that you have defined. Depending on your setting for max results and the number of firewalls you have, a single call might not be the full list. * *(dict) --* High-level information about a VPC endpoint association, returned by "ListVpcEndpointAssociations". You can use the information provided in the metadata to retrieve and manage a VPC endpoint association. * **VpcEndpointAssociationArn** *(string) --* The Amazon Resource Name (ARN) of a VPC endpoint association. NetworkFirewall / Paginator / ListTLSInspectionConfigurations ListTLSInspectionConfigurations ******************************* class NetworkFirewall.Paginator.ListTLSInspectionConfigurations paginator = client.get_paginator('list_tls_inspection_configurations') paginate(**kwargs) Creates an iterator that will paginate through responses from "NetworkFirewall.Client.list_tls_inspection_configurations()". 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 "NextToken" will 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 "NextToken" from a previous response. Return type: dict Returns: **Response Syntax** { 'TLSInspectionConfigurations': [ { 'Name': 'string', 'Arn': 'string' }, ] } **Response Structure** * *(dict) --* * **TLSInspectionConfigurations** *(list) --* The TLS inspection configuration metadata objects that you've defined. Depending on your setting for max results and the number of TLS inspection configurations, this might not be the full list. * *(dict) --* High-level information about a TLS inspection configuration, returned by "ListTLSInspectionConfigurations". You can use the information provided in the metadata to retrieve and manage a TLS configuration. * **Name** *(string) --* The descriptive name of the TLS inspection configuration. You can't change the name of a TLS inspection configuration after you create it. * **Arn** *(string) --* The Amazon Resource Name (ARN) of the TLS inspection configuration. NetworkFirewall / Paginator / GetAnalysisReportResults GetAnalysisReportResults ************************ class NetworkFirewall.Paginator.GetAnalysisReportResults paginator = client.get_paginator('get_analysis_report_results') paginate(**kwargs) Creates an iterator that will paginate through responses from "NetworkFirewall.Client.get_analysis_report_results()". See also: AWS API Documentation **Request Syntax** response_iterator = paginator.paginate( FirewallName='string', AnalysisReportId='string', FirewallArn='string', PaginationConfig={ 'MaxItems': 123, 'PageSize': 123, 'StartingToken': 'string' } ) Parameters: * **FirewallName** (*string*) -- The descriptive name of the firewall. You can't change the name of a firewall after you create it. You must specify the ARN or the name, and you can specify both. * **AnalysisReportId** (*string*) -- **[REQUIRED]** The unique ID of the query that ran when you requested an analysis report. * **FirewallArn** (*string*) -- The Amazon Resource Name (ARN) of the firewall. You must specify the ARN or the name, and you can specify both. * **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 "NextToken" will 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 "NextToken" from a previous response. Return type: dict Returns: **Response Syntax** { 'Status': 'string', 'StartTime': datetime(2015, 1, 1), 'EndTime': datetime(2015, 1, 1), 'ReportTime': datetime(2015, 1, 1), 'AnalysisType': 'TLS_SNI'|'HTTP_HOST', 'AnalysisReportResults': [ { 'Protocol': 'string', 'FirstAccessed': datetime(2015, 1, 1), 'LastAccessed': datetime(2015, 1, 1), 'Domain': 'string', 'Hits': { 'Count': 123 }, 'UniqueSources': { 'Count': 123 } }, ] } **Response Structure** * *(dict) --* * **Status** *(string) --* The status of the analysis report you specify. Statuses include "RUNNING", "COMPLETED", or "FAILED". * **StartTime** *(datetime) --* The date and time within the last 30 days from which to start retrieving analysis data, in UTC format (for example, "YYYY-MM-DDTHH:MM:SSZ". * **EndTime** *(datetime) --* The date and time, up to the current date, from which to stop retrieving analysis data, in UTC format (for example, "YYYY-MM-DDTHH:MM:SSZ"). * **ReportTime** *(datetime) --* The date and time the analysis report was ran. * **AnalysisType** *(string) --* The type of traffic that will be used to generate a report. * **AnalysisReportResults** *(list) --* Retrieves the results of a traffic analysis report. * *(dict) --* The results of a "COMPLETED" analysis report generated with StartAnalysisReport. For an example of traffic analysis report results, see the response syntax of GetAnalysisReportResults. * **Protocol** *(string) --* The type of traffic captured by the analysis report. * **FirstAccessed** *(datetime) --* The date and time any domain was first accessed (within the last 30 day period). * **LastAccessed** *(datetime) --* The date and time any domain was last accessed (within the last 30 day period). * **Domain** *(string) --* The most frequently accessed domains. * **Hits** *(dict) --* The number of attempts made to access a observed domain. * **Count** *(integer) --* The number of attempts made to access a domain. * **UniqueSources** *(dict) --* The number of unique source IP addresses that connected to a domain. * **Count** *(integer) --* The number of unique source IP addresses that connected to a domain. NetworkFirewall / Paginator / ListRuleGroups ListRuleGroups ************** class NetworkFirewall.Paginator.ListRuleGroups paginator = client.get_paginator('list_rule_groups') paginate(**kwargs) Creates an iterator that will paginate through responses from "NetworkFirewall.Client.list_rule_groups()". See also: AWS API Documentation **Request Syntax** response_iterator = paginator.paginate( Scope='MANAGED'|'ACCOUNT', ManagedType='AWS_MANAGED_THREAT_SIGNATURES'|'AWS_MANAGED_DOMAIN_LISTS'|'ACTIVE_THREAT_DEFENSE', Type='STATELESS'|'STATEFUL', PaginationConfig={ 'MaxItems': 123, 'PageSize': 123, 'StartingToken': 'string' } ) Parameters: * **Scope** (*string*) -- The scope of the request. The default setting of "ACCOUNT" or a setting of "NULL" returns all of the rule groups in your account. A setting of "MANAGED" returns all available managed rule groups. * **ManagedType** (*string*) -- Indicates the general category of the Amazon Web Services managed rule group. * **Type** (*string*) -- Indicates whether the rule group is stateless or stateful. If the rule group is stateless, it contains stateless rules. If it is stateful, it contains stateful rules. * **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 "NextToken" will 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 "NextToken" from a previous response. Return type: dict Returns: **Response Syntax** { 'RuleGroups': [ { 'Name': 'string', 'Arn': 'string' }, ] } **Response Structure** * *(dict) --* * **RuleGroups** *(list) --* The rule group metadata objects that you've defined. Depending on your setting for max results and the number of rule groups, this might not be the full list. * *(dict) --* High-level information about a rule group, returned by ListRuleGroups. You can use the information provided in the metadata to retrieve and manage a rule group. * **Name** *(string) --* The descriptive name of the rule group. You can't change the name of a rule group after you create it. * **Arn** *(string) --* The Amazon Resource Name (ARN) of the rule group. NetworkFirewall / Paginator / ListFirewallPolicies ListFirewallPolicies ******************** class NetworkFirewall.Paginator.ListFirewallPolicies paginator = client.get_paginator('list_firewall_policies') paginate(**kwargs) Creates an iterator that will paginate through responses from "NetworkFirewall.Client.list_firewall_policies()". 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 "NextToken" will 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 "NextToken" from a previous response. Return type: dict Returns: **Response Syntax** { 'FirewallPolicies': [ { 'Name': 'string', 'Arn': 'string' }, ] } **Response Structure** * *(dict) --* * **FirewallPolicies** *(list) --* The metadata for the firewall policies. Depending on your setting for max results and the number of firewall policies that you have, this might not be the full list. * *(dict) --* High-level information about a firewall policy, returned by operations like create and describe. You can use the information provided in the metadata to retrieve and manage a firewall policy. You can retrieve all objects for a firewall policy by calling DescribeFirewallPolicy. * **Name** *(string) --* The descriptive name of the firewall policy. You can't change the name of a firewall policy after you create it. * **Arn** *(string) --* The Amazon Resource Name (ARN) of the firewall policy. NetworkFirewall / Paginator / ListFlowOperationResults ListFlowOperationResults ************************ class NetworkFirewall.Paginator.ListFlowOperationResults paginator = client.get_paginator('list_flow_operation_results') paginate(**kwargs) Creates an iterator that will paginate through responses from "NetworkFirewall.Client.list_flow_operation_results()". See also: AWS API Documentation **Request Syntax** response_iterator = paginator.paginate( FirewallArn='string', FlowOperationId='string', AvailabilityZone='string', VpcEndpointId='string', VpcEndpointAssociationArn='string', PaginationConfig={ 'MaxItems': 123, 'PageSize': 123, 'StartingToken': 'string' } ) Parameters: * **FirewallArn** (*string*) -- **[REQUIRED]** The Amazon Resource Name (ARN) of the firewall. * **FlowOperationId** (*string*) -- **[REQUIRED]** A unique identifier for the flow operation. This ID is returned in the responses to start and list commands. You provide to describe commands. * **AvailabilityZone** (*string*) -- The ID of the Availability Zone where the firewall is located. For example, "us-east-2a". Defines the scope a flow operation. You can use up to 20 filters to configure a single flow operation. * **VpcEndpointId** (*string*) -- A unique identifier for the primary endpoint associated with a firewall. * **VpcEndpointAssociationArn** (*string*) -- The Amazon Resource Name (ARN) of a VPC endpoint association. * **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 "NextToken" will 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 "NextToken" from a previous response. Return type: dict Returns: **Response Syntax** { 'FirewallArn': 'string', 'AvailabilityZone': 'string', 'VpcEndpointAssociationArn': 'string', 'VpcEndpointId': 'string', 'FlowOperationId': 'string', 'FlowOperationStatus': 'COMPLETED'|'IN_PROGRESS'|'FAILED'|'COMPLETED_WITH_ERRORS', 'StatusMessage': 'string', 'FlowRequestTimestamp': datetime(2015, 1, 1), 'Flows': [ { 'SourceAddress': { 'AddressDefinition': 'string' }, 'DestinationAddress': { 'AddressDefinition': 'string' }, 'SourcePort': 'string', 'DestinationPort': 'string', 'Protocol': 'string', 'Age': 123, 'PacketCount': 123, 'ByteCount': 123 }, ], } **Response Structure** * *(dict) --* * **FirewallArn** *(string) --* The Amazon Resource Name (ARN) of the firewall. * **AvailabilityZone** *(string) --* The ID of the Availability Zone where the firewall is located. For example, "us-east-2a". Defines the scope a flow operation. You can use up to 20 filters to configure a single flow operation. * **VpcEndpointAssociationArn** *(string) --* * **VpcEndpointId** *(string) --* * **FlowOperationId** *(string) --* A unique identifier for the flow operation. This ID is returned in the responses to start and list commands. You provide to describe commands. * **FlowOperationStatus** *(string) --* Returns the status of the flow operation. This string is returned in the responses to start, list, and describe commands. If the status is "COMPLETED_WITH_ERRORS", results may be returned with any number of "Flows" missing from the response. If the status is "FAILED", "Flows" returned will be empty. * **StatusMessage** *(string) --* If the asynchronous operation fails, Network Firewall populates this with the reason for the error or failure. Options include "Flow operation error" and "Flow timeout". * **FlowRequestTimestamp** *(datetime) --* A timestamp indicating when the Suricata engine identified flows impacted by an operation. * **Flows** *(list) --* Any number of arrays, where each array is a single flow identified in the scope of the operation. If multiple flows were in the scope of the operation, multiple "Flows" arrays are returned. * *(dict) --* Any number of arrays, where each array is a single flow identified in the scope of the operation. If multiple flows were in the scope of the operation, multiple "Flows" arrays are returned. * **SourceAddress** *(dict) --* A single IP address specification. This is used in the MatchAttributes source and destination specifications. * **AddressDefinition** *(string) --* Specify an IP address or a block of IP addresses in Classless Inter-Domain Routing (CIDR) notation. Network Firewall supports all address ranges for IPv4 and IPv6. Examples: * To configure Network Firewall to inspect for the IP address 192.0.2.44, specify "192.0.2.44/32". * To configure Network Firewall to inspect for IP addresses from 192.0.2.0 to 192.0.2.255, specify "192.0.2.0/24". * To configure Network Firewall to inspect for the IP address 1111:0000:0000:0000:0000:0000:0000:0111, specify "1111:0000:0000:0000:0000:0000:0000:0111/128". * To configure Network Firewall to inspect for IP addresses from 1111:0000:0000:0000:0000:0000:0000:0000 to 1111:0000:0000:0000:ffff:ffff:ffff:ffff, specify "1111:0000:0000:0000:0000:0000:0000:0000/64". For more information about CIDR notation, see the Wikipedia entry Classless Inter-Domain Routing. * **DestinationAddress** *(dict) --* A single IP address specification. This is used in the MatchAttributes source and destination specifications. * **AddressDefinition** *(string) --* Specify an IP address or a block of IP addresses in Classless Inter-Domain Routing (CIDR) notation. Network Firewall supports all address ranges for IPv4 and IPv6. Examples: * To configure Network Firewall to inspect for the IP address 192.0.2.44, specify "192.0.2.44/32". * To configure Network Firewall to inspect for IP addresses from 192.0.2.0 to 192.0.2.255, specify "192.0.2.0/24". * To configure Network Firewall to inspect for the IP address 1111:0000:0000:0000:0000:0000:0000:0111, specify "1111:0000:0000:0000:0000:0000:0000:0111/128". * To configure Network Firewall to inspect for IP addresses from 1111:0000:0000:0000:0000:0000:0000:0000 to 1111:0000:0000:0000:ffff:ffff:ffff:ffff, specify "1111:0000:0000:0000:0000:0000:0000:0000/64". For more information about CIDR notation, see the Wikipedia entry Classless Inter-Domain Routing. * **SourcePort** *(string) --* The source port to inspect for. You can specify an individual port, for example "1994" and you can specify a port range, for example "1990:1994". To match with any port, specify "ANY". * **DestinationPort** *(string) --* The destination port to inspect for. You can specify an individual port, for example "1994" and you can specify a port range, for example "1990:1994". To match with any port, specify "ANY". * **Protocol** *(string) --* The protocols to inspect for, specified using the assigned internet protocol number (IANA) for each protocol. If not specified, this matches with any protocol. * **Age** *(integer) --* Returned as info about age of the flows identified by the flow operation. * **PacketCount** *(integer) --* Returns the total number of data packets received or transmitted in a flow. * **ByteCount** *(integer) --* Returns the number of bytes received or transmitted in a specific flow. NetworkFirewall / Client / create_firewall create_firewall *************** NetworkFirewall.Client.create_firewall(**kwargs) Creates an Network Firewall Firewall and accompanying FirewallStatus for a VPC. The firewall defines the configuration settings for an Network Firewall firewall. The settings that you can define at creation include the firewall policy, the subnets in your VPC to use for the firewall endpoints, and any tags that are attached to the firewall Amazon Web Services resource. After you create a firewall, you can provide additional settings, like the logging configuration. To update the settings for a firewall, you use the operations that apply to the settings themselves, for example UpdateLoggingConfiguration, AssociateSubnets, and UpdateFirewallDeleteProtection. To manage a firewall's tags, use the standard Amazon Web Services resource tagging operations, ListTagsForResource, TagResource, and UntagResource. To retrieve information about firewalls, use ListFirewalls and DescribeFirewall. To generate a report on the last 30 days of traffic monitored by a firewall, use StartAnalysisReport. See also: AWS API Documentation **Request Syntax** response = client.create_firewall( FirewallName='string', FirewallPolicyArn='string', VpcId='string', SubnetMappings=[ { 'SubnetId': 'string', 'IPAddressType': 'DUALSTACK'|'IPV4'|'IPV6' }, ], DeleteProtection=True|False, SubnetChangeProtection=True|False, FirewallPolicyChangeProtection=True|False, Description='string', Tags=[ { 'Key': 'string', 'Value': 'string' }, ], EncryptionConfiguration={ 'KeyId': 'string', 'Type': 'CUSTOMER_KMS'|'AWS_OWNED_KMS_KEY' }, EnabledAnalysisTypes=[ 'TLS_SNI'|'HTTP_HOST', ], TransitGatewayId='string', AvailabilityZoneMappings=[ { 'AvailabilityZone': 'string' }, ], AvailabilityZoneChangeProtection=True|False ) Parameters: * **FirewallName** (*string*) -- **[REQUIRED]** The descriptive name of the firewall. You can't change the name of a firewall after you create it. * **FirewallPolicyArn** (*string*) -- **[REQUIRED]** The Amazon Resource Name (ARN) of the FirewallPolicy that you want to use for the firewall. * **VpcId** (*string*) -- The unique identifier of the VPC where Network Firewall should create the firewall. You can't change this setting after you create the firewall. * **SubnetMappings** (*list*) -- The public subnets to use for your Network Firewall firewalls. Each subnet must belong to a different Availability Zone in the VPC. Network Firewall creates a firewall endpoint in each subnet. * *(dict) --* The ID for a subnet that's used in an association with a firewall. This is used in CreateFirewall, AssociateSubnets, and CreateVpcEndpointAssociation. Network Firewall creates an instance of the associated firewall in each subnet that you specify, to filter traffic in the subnet's Availability Zone. * **SubnetId** *(string) --* **[REQUIRED]** The unique identifier for the subnet. * **IPAddressType** *(string) --* The subnet's IP address type. You can't change the IP address type after you create the subnet. * **DeleteProtection** (*boolean*) -- A flag indicating whether it is possible to delete the firewall. A setting of "TRUE" indicates that the firewall is protected against deletion. Use this setting to protect against accidentally deleting a firewall that is in use. When you create a firewall, the operation initializes this flag to "TRUE". * **SubnetChangeProtection** (*boolean*) -- A setting indicating whether the firewall is protected against changes to the subnet associations. Use this setting to protect against accidentally modifying the subnet associations for a firewall that is in use. When you create a firewall, the operation initializes this setting to "TRUE". * **FirewallPolicyChangeProtection** (*boolean*) -- A setting indicating whether the firewall is protected against a change to the firewall policy association. Use this setting to protect against accidentally modifying the firewall policy for a firewall that is in use. When you create a firewall, the operation initializes this setting to "TRUE". * **Description** (*string*) -- A description of the firewall. * **Tags** (*list*) -- The key:value pairs to associate with the resource. * *(dict) --* A key:value pair associated with an Amazon Web Services resource. The key:value pair can be anything you define. Typically, the tag key represents a category (such as "environment") and the tag value represents a specific value within that category (such as "test," "development," or "production"). You can add up to 50 tags to each Amazon Web Services resource. * **Key** *(string) --* **[REQUIRED]** The part of the key:value pair that defines a tag. You can use a tag key to describe a category of information, such as "customer." Tag keys are case-sensitive. * **Value** *(string) --* **[REQUIRED]** The part of the key:value pair that defines a tag. You can use a tag value to describe a specific value within a category, such as "companyA" or "companyB." Tag values are case-sensitive. * **EncryptionConfiguration** (*dict*) -- A complex type that contains settings for encryption of your firewall resources. * **KeyId** *(string) --* The ID of the Amazon Web Services Key Management Service (KMS) customer managed key. You can use any of the key identifiers that KMS supports, unless you're using a key that's managed by another account. If you're using a key managed by another account, then specify the key ARN. For more information, see Key ID in the *Amazon Web Services KMS Developer Guide*. * **Type** *(string) --* **[REQUIRED]** The type of Amazon Web Services KMS key to use for encryption of your Network Firewall resources. * **EnabledAnalysisTypes** (*list*) -- An optional setting indicating the specific traffic analysis types to enable on the firewall. * *(string) --* * **TransitGatewayId** (*string*) -- Required when creating a transit gateway-attached firewall. The unique identifier of the transit gateway to attach to this firewall. You can provide either a transit gateway from your account or one that has been shared with you through Resource Access Manager. Warning: After creating the firewall, you cannot change the transit gateway association. To use a different transit gateway, you must create a new firewall. For information about creating firewalls, see CreateFirewall. For specific guidance about transit gateway-attached firewalls, see Considerations for transit gateway-attached firewalls in the *Network Firewall Developer Guide*. * **AvailabilityZoneMappings** (*list*) -- Required. The Availability Zones where you want to create firewall endpoints for a transit gateway-attached firewall. You must specify at least one Availability Zone. Consider enabling the firewall in every Availability Zone where you have workloads to maintain Availability Zone independence. You can modify Availability Zones later using AssociateAvailabilityZones or DisassociateAvailabilityZones, but this may briefly disrupt traffic. The "AvailabilityZoneChangeProtection" setting controls whether you can make these modifications. * *(dict) --* Defines the mapping between an Availability Zone and a firewall endpoint for a transit gateway-attached firewall. Each mapping represents where the firewall can process traffic. You use these mappings when calling CreateFirewall, AssociateAvailabilityZones, and DisassociateAvailabilityZones. To retrieve the current Availability Zone mappings for a firewall, use DescribeFirewall. * **AvailabilityZone** *(string) --* **[REQUIRED]** The ID of the Availability Zone where the firewall endpoint is located. For example, "us-east-2a". The Availability Zone must be in the same Region as the transit gateway. * **AvailabilityZoneChangeProtection** (*boolean*) -- Optional. A setting indicating whether the firewall is protected against changes to its Availability Zone configuration. When set to "TRUE", you cannot add or remove Availability Zones without first disabling this protection using UpdateAvailabilityZoneChangeProtection. Default value: "FALSE" Return type: dict Returns: **Response Syntax** { 'Firewall': { 'FirewallName': 'string', 'FirewallArn': 'string', 'FirewallPolicyArn': 'string', 'VpcId': 'string', 'SubnetMappings': [ { 'SubnetId': 'string', 'IPAddressType': 'DUALSTACK'|'IPV4'|'IPV6' }, ], 'DeleteProtection': True|False, 'SubnetChangeProtection': True|False, 'FirewallPolicyChangeProtection': True|False, 'Description': 'string', 'FirewallId': 'string', 'Tags': [ { 'Key': 'string', 'Value': 'string' }, ], 'EncryptionConfiguration': { 'KeyId': 'string', 'Type': 'CUSTOMER_KMS'|'AWS_OWNED_KMS_KEY' }, 'NumberOfAssociations': 123, 'EnabledAnalysisTypes': [ 'TLS_SNI'|'HTTP_HOST', ], 'TransitGatewayId': 'string', 'TransitGatewayOwnerAccountId': 'string', 'AvailabilityZoneMappings': [ { 'AvailabilityZone': 'string' }, ], 'AvailabilityZoneChangeProtection': True|False }, 'FirewallStatus': { 'Status': 'PROVISIONING'|'DELETING'|'READY', 'ConfigurationSyncStateSummary': 'PENDING'|'IN_SYNC'|'CAPACITY_CONSTRAINED', 'SyncStates': { 'string': { 'Attachment': { 'SubnetId': 'string', 'EndpointId': 'string', 'Status': 'CREATING'|'DELETING'|'FAILED'|'ERROR'|'SCALING'|'READY', 'StatusMessage': 'string' }, 'Config': { 'string': { 'SyncStatus': 'PENDING'|'IN_SYNC'|'CAPACITY_CONSTRAINED', 'UpdateToken': 'string' } } } }, 'CapacityUsageSummary': { 'CIDRs': { 'AvailableCIDRCount': 123, 'UtilizedCIDRCount': 123, 'IPSetReferences': { 'string': { 'ResolvedCIDRCount': 123 } } } }, 'TransitGatewayAttachmentSyncState': { 'AttachmentId': 'string', 'TransitGatewayAttachmentStatus': 'CREATING'|'DELETING'|'DELETED'|'FAILED'|'ERROR'|'READY'|'PENDING_ACCEPTANCE'|'REJECTING'|'REJECTED', 'StatusMessage': 'string' } } } **Response Structure** * *(dict) --* * **Firewall** *(dict) --* The configuration settings for the firewall. These settings include the firewall policy and the subnets in your VPC to use for the firewall endpoints. * **FirewallName** *(string) --* The descriptive name of the firewall. You can't change the name of a firewall after you create it. * **FirewallArn** *(string) --* The Amazon Resource Name (ARN) of the firewall. * **FirewallPolicyArn** *(string) --* The Amazon Resource Name (ARN) of the firewall policy. The relationship of firewall to firewall policy is many to one. Each firewall requires one firewall policy association, and you can use the same firewall policy for multiple firewalls. * **VpcId** *(string) --* The unique identifier of the VPC where the firewall is in use. * **SubnetMappings** *(list) --* The primary public subnets that Network Firewall is using for the firewall. Network Firewall creates a firewall endpoint in each subnet. Create a subnet mapping for each Availability Zone where you want to use the firewall. These subnets are all defined for a single, primary VPC, and each must belong to a different Availability Zone. Each of these subnets establishes the availability of the firewall in its Availability Zone. In addition to these subnets, you can define other endpoints for the firewall in "VpcEndpointAssociation" resources. You can define these additional endpoints for any VPC, and for any of the Availability Zones where the firewall resource already has a subnet mapping. VPC endpoint associations give you the ability to protect multiple VPCs using a single firewall, and to define multiple firewall endpoints for a VPC in a single Availability Zone. * *(dict) --* The ID for a subnet that's used in an association with a firewall. This is used in CreateFirewall, AssociateSubnets, and CreateVpcEndpointAssociation. Network Firewall creates an instance of the associated firewall in each subnet that you specify, to filter traffic in the subnet's Availability Zone. * **SubnetId** *(string) --* The unique identifier for the subnet. * **IPAddressType** *(string) --* The subnet's IP address type. You can't change the IP address type after you create the subnet. * **DeleteProtection** *(boolean) --* A flag indicating whether it is possible to delete the firewall. A setting of "TRUE" indicates that the firewall is protected against deletion. Use this setting to protect against accidentally deleting a firewall that is in use. When you create a firewall, the operation initializes this flag to "TRUE". * **SubnetChangeProtection** *(boolean) --* A setting indicating whether the firewall is protected against changes to the subnet associations. Use this setting to protect against accidentally modifying the subnet associations for a firewall that is in use. When you create a firewall, the operation initializes this setting to "TRUE". * **FirewallPolicyChangeProtection** *(boolean) --* A setting indicating whether the firewall is protected against a change to the firewall policy association. Use this setting to protect against accidentally modifying the firewall policy for a firewall that is in use. When you create a firewall, the operation initializes this setting to "TRUE". * **Description** *(string) --* A description of the firewall. * **FirewallId** *(string) --* The unique identifier for the firewall. * **Tags** *(list) --* * *(dict) --* A key:value pair associated with an Amazon Web Services resource. The key:value pair can be anything you define. Typically, the tag key represents a category (such as "environment") and the tag value represents a specific value within that category (such as "test," "development," or "production"). You can add up to 50 tags to each Amazon Web Services resource. * **Key** *(string) --* The part of the key:value pair that defines a tag. You can use a tag key to describe a category of information, such as "customer." Tag keys are case- sensitive. * **Value** *(string) --* The part of the key:value pair that defines a tag. You can use a tag value to describe a specific value within a category, such as "companyA" or "companyB." Tag values are case-sensitive. * **EncryptionConfiguration** *(dict) --* A complex type that contains the Amazon Web Services KMS encryption configuration settings for your firewall. * **KeyId** *(string) --* The ID of the Amazon Web Services Key Management Service (KMS) customer managed key. You can use any of the key identifiers that KMS supports, unless you're using a key that's managed by another account. If you're using a key managed by another account, then specify the key ARN. For more information, see Key ID in the *Amazon Web Services KMS Developer Guide*. * **Type** *(string) --* The type of Amazon Web Services KMS key to use for encryption of your Network Firewall resources. * **NumberOfAssociations** *(integer) --* The number of "VpcEndpointAssociation" resources that use this firewall. * **EnabledAnalysisTypes** *(list) --* An optional setting indicating the specific traffic analysis types to enable on the firewall. * *(string) --* * **TransitGatewayId** *(string) --* The unique identifier of the transit gateway associated with this firewall. This field is only present for transit gateway-attached firewalls. * **TransitGatewayOwnerAccountId** *(string) --* The Amazon Web Services account ID that owns the transit gateway. This may be different from the firewall owner's account ID when using a shared transit gateway. * **AvailabilityZoneMappings** *(list) --* The Availability Zones where the firewall endpoints are created for a transit gateway-attached firewall. Each mapping specifies an Availability Zone where the firewall processes traffic. * *(dict) --* Defines the mapping between an Availability Zone and a firewall endpoint for a transit gateway-attached firewall. Each mapping represents where the firewall can process traffic. You use these mappings when calling CreateFirewall, AssociateAvailabilityZones, and DisassociateAvailabilityZones. To retrieve the current Availability Zone mappings for a firewall, use DescribeFirewall. * **AvailabilityZone** *(string) --* The ID of the Availability Zone where the firewall endpoint is located. For example, "us-east-2a". The Availability Zone must be in the same Region as the transit gateway. * **AvailabilityZoneChangeProtection** *(boolean) --* A setting indicating whether the firewall is protected against changes to its Availability Zone configuration. When set to "TRUE", you must first disable this protection before adding or removing Availability Zones. * **FirewallStatus** *(dict) --* Detailed information about the current status of a Firewall. You can retrieve this for a firewall by calling DescribeFirewall and providing the firewall name and ARN. The firewall status indicates a combined status. It indicates whether all subnets are up-to-date with the latest firewall configurations, which is based on the sync states config values, and also whether all subnets have their endpoints fully enabled, based on their sync states attachment values. * **Status** *(string) --* The readiness of the configured firewall to handle network traffic across all of the Availability Zones where you have it configured. This setting is "READY" only when the "ConfigurationSyncStateSummary" value is "IN_SYNC" and the "Attachment" "Status" values for all of the configured subnets are "READY". * **ConfigurationSyncStateSummary** *(string) --* The configuration sync state for the firewall. This summarizes the "Config" settings in the "SyncStates" for this firewall status object. When you create a firewall or update its configuration, for example by adding a rule group to its firewall policy, Network Firewall distributes the configuration changes to all Availability Zones that have subnets defined for the firewall. This summary indicates whether the configuration changes have been applied everywhere. This status must be "IN_SYNC" for the firewall to be ready for use, but it doesn't indicate that the firewall is ready. The "Status" setting indicates firewall readiness. It's based on this setting and the readiness of the firewall endpoints to take traffic. * **SyncStates** *(dict) --* Status for the subnets that you've configured in the firewall. This contains one array element per Availability Zone where you've configured a subnet in the firewall. These objects provide detailed information for the settings "ConfigurationSyncStateSummary" and "Status". * *(string) --* * *(dict) --* The status of the firewall endpoint and firewall policy configuration for a single VPC subnet. This is part of the FirewallStatus. For each VPC subnet that you associate with a firewall, Network Firewall does the following: * Instantiates a firewall endpoint in the subnet, ready to take traffic. * Configures the endpoint with the current firewall policy settings, to provide the filtering behavior for the endpoint. When you update a firewall, for example to add a subnet association or change a rule group in the firewall policy, the affected sync states reflect out- of-sync or not ready status until the changes are complete. * **Attachment** *(dict) --* The configuration and status for a single firewall subnet. For each configured subnet, Network Firewall creates the attachment by instantiating the firewall endpoint in the subnet so that it's ready to take traffic. * **SubnetId** *(string) --* The unique identifier of the subnet that you've specified to be used for a firewall endpoint. * **EndpointId** *(string) --* The identifier of the firewall endpoint that Network Firewall has instantiated in the subnet. You use this to identify the firewall endpoint in the VPC route tables, when you redirect the VPC traffic through the endpoint. * **Status** *(string) --* The current status of the firewall endpoint instantiation in the subnet. When this value is "READY", the endpoint is available to handle network traffic. Otherwise, this value reflects its state, for example "CREATING" or "DELETING". * **StatusMessage** *(string) --* If Network Firewall fails to create or delete the firewall endpoint in the subnet, it populates this with the reason for the error or failure and how to resolve it. A "FAILED" status indicates a non- recoverable state, and a "ERROR" status indicates an issue that you can fix. Depending on the error, it can take as many as 15 minutes to populate this field. For more information about the causes for failiure or errors and solutions available for this field, see Troubleshooting firewall endpoint failures in the *Network Firewall Developer Guide*. * **Config** *(dict) --* The configuration status of the firewall endpoint in a single VPC subnet. Network Firewall provides each endpoint with the rules that are configured in the firewall policy. Each time you add a subnet or modify the associated firewall policy, Network Firewall synchronizes the rules in the endpoint, so it can properly filter network traffic. * *(string) --* * *(dict) --* Provides configuration status for a single policy or rule group that is used for a firewall endpoint. Network Firewall provides each endpoint with the rules that are configured in the firewall policy. Each time you add a subnet or modify the associated firewall policy, Network Firewall synchronizes the rules in the endpoint, so it can properly filter network traffic. This is part of a SyncState for a firewall. * **SyncStatus** *(string) --* Indicates whether this object is in sync with the version indicated in the update token. * **UpdateToken** *(string) --* The current version of the object that is either in sync or pending synchronization. * **CapacityUsageSummary** *(dict) --* Describes the capacity usage of the resources contained in a firewall's reference sets. Network Firewall calculates the capacity usage by taking an aggregated count of all of the resources used by all of the reference sets in a firewall. * **CIDRs** *(dict) --* Describes the capacity usage of the CIDR blocks used by the IP set references in a firewall. * **AvailableCIDRCount** *(integer) --* The number of CIDR blocks available for use by the IP set references in a firewall. * **UtilizedCIDRCount** *(integer) --* The number of CIDR blocks used by the IP set references in a firewall. * **IPSetReferences** *(dict) --* The list of the IP set references used by a firewall. * *(string) --* * *(dict) --* General information about the IP set. * **ResolvedCIDRCount** *(integer) --* Describes the total number of CIDR blocks currently in use by the IP set references in a firewall. To determine how many CIDR blocks are available for you to use in a firewall, you can call "AvailableCIDRCount". * **TransitGatewayAttachmentSyncState** *(dict) --* The synchronization state of the transit gateway attachment. This indicates whether the firewall's transit gateway configuration is properly synchronized and operational. Use this to verify that your transit gateway configuration changes have been applied. * **AttachmentId** *(string) --* The unique identifier of the transit gateway attachment. * **TransitGatewayAttachmentStatus** *(string) --* The current status of the transit gateway attachment. Valid values are: * "CREATING" - The attachment is being created * "DELETING" - The attachment is being deleted * "DELETED" - The attachment has been deleted * "FAILED" - The attachment creation has failed and cannot be recovered * "ERROR" - The attachment is in an error state that might be recoverable * "READY" - The attachment is active and processing traffic * "PENDING_ACCEPTANCE" - The attachment is waiting to be accepted * "REJECTING" - The attachment is in the process of being rejected * "REJECTED" - The attachment has been rejected * **StatusMessage** *(string) --* A message providing additional information about the current status, particularly useful when the transit gateway attachment is in a non- "READY" state. Valid values are: * "CREATING" - The attachment is being created * "DELETING" - The attachment is being deleted * "DELETED" - The attachment has been deleted * "FAILED" - The attachment creation has failed and cannot be recovered * "ERROR" - The attachment is in an error state that might be recoverable * "READY" - The attachment is active and processing traffic * "PENDING_ACCEPTANCE" - The attachment is waiting to be accepted * "REJECTING" - The attachment is in the process of being rejected * "REJECTED" - The attachment has been rejected For information about troubleshooting endpoint failures, see Troubleshooting firewall endpoint failures in the *Network Firewall Developer Guide*. **Exceptions** * "NetworkFirewall.Client.exceptions.InvalidRequestException" * "NetworkFirewall.Client.exceptions.LimitExceededException" * "NetworkFirewall.Client.exceptions.InternalServerError" * "NetworkFirewall.Client.exceptions.ThrottlingException" * "NetworkFirewall.Client.exceptions.InsufficientCapacityException" * "NetworkFirewall.Client.exceptions.InvalidOperationException" NetworkFirewall / Client / get_paginator get_paginator ************* NetworkFirewall.Client.get_paginator(operation_name) Create a paginator for an operation. Parameters: **operation_name** (*string*) -- The operation name. This is the same name as the method name on the client. For example, if the method name is "create_foo", and you'd normally invoke the operation as "client.create_foo(**kwargs)", if the "create_foo" operation can be paginated, you can use the call "client.get_paginator("create_foo")". Raises: **OperationNotPageableError** -- Raised if the operation is not pageable. You can use the "client.can_paginate" method to check if an operation is pageable. Return type: "botocore.paginate.Paginator" Returns: A paginator object. NetworkFirewall / Client / update_firewall_policy_change_protection update_firewall_policy_change_protection **************************************** NetworkFirewall.Client.update_firewall_policy_change_protection(**kwargs) Modifies the flag, "ChangeProtection", which indicates whether it is possible to change the firewall. If the flag is set to "TRUE", the firewall is protected from changes. This setting helps protect against accidentally changing a firewall that's in use. See also: AWS API Documentation **Request Syntax** response = client.update_firewall_policy_change_protection( UpdateToken='string', FirewallArn='string', FirewallName='string', FirewallPolicyChangeProtection=True|False ) Parameters: * **UpdateToken** (*string*) -- An optional token that you can use for optimistic locking. Network Firewall returns a token to your requests that access the firewall. The token marks the state of the firewall resource at the time of the request. To make an unconditional change to the firewall, omit the token in your update request. Without the token, Network Firewall performs your updates regardless of whether the firewall has changed since you last retrieved it. To make a conditional change to the firewall, provide the token in your update request. Network Firewall uses the token to ensure that the firewall hasn't changed since you last retrieved it. If it has changed, the operation fails with an "InvalidTokenException". If this happens, retrieve the firewall again to get a current copy of it with a new token. Reapply your changes as needed, then try the operation again using the new token. * **FirewallArn** (*string*) -- The Amazon Resource Name (ARN) of the firewall. You must specify the ARN or the name, and you can specify both. * **FirewallName** (*string*) -- The descriptive name of the firewall. You can't change the name of a firewall after you create it. You must specify the ARN or the name, and you can specify both. * **FirewallPolicyChangeProtection** (*boolean*) -- **[REQUIRED]** A setting indicating whether the firewall is protected against a change to the firewall policy association. Use this setting to protect against accidentally modifying the firewall policy for a firewall that is in use. When you create a firewall, the operation initializes this setting to "TRUE". Return type: dict Returns: **Response Syntax** { 'UpdateToken': 'string', 'FirewallArn': 'string', 'FirewallName': 'string', 'FirewallPolicyChangeProtection': True|False } **Response Structure** * *(dict) --* * **UpdateToken** *(string) --* An optional token that you can use for optimistic locking. Network Firewall returns a token to your requests that access the firewall. The token marks the state of the firewall resource at the time of the request. To make an unconditional change to the firewall, omit the token in your update request. Without the token, Network Firewall performs your updates regardless of whether the firewall has changed since you last retrieved it. To make a conditional change to the firewall, provide the token in your update request. Network Firewall uses the token to ensure that the firewall hasn't changed since you last retrieved it. If it has changed, the operation fails with an "InvalidTokenException". If this happens, retrieve the firewall again to get a current copy of it with a new token. Reapply your changes as needed, then try the operation again using the new token. * **FirewallArn** *(string) --* The Amazon Resource Name (ARN) of the firewall. * **FirewallName** *(string) --* The descriptive name of the firewall. You can't change the name of a firewall after you create it. * **FirewallPolicyChangeProtection** *(boolean) --* A setting indicating whether the firewall is protected against a change to the firewall policy association. Use this setting to protect against accidentally modifying the firewall policy for a firewall that is in use. When you create a firewall, the operation initializes this setting to "TRUE". **Exceptions** * "NetworkFirewall.Client.exceptions.InvalidRequestException" * "NetworkFirewall.Client.exceptions.InternalServerError" * "NetworkFirewall.Client.exceptions.ResourceNotFoundException" * "NetworkFirewall.Client.exceptions.ThrottlingException" * "NetworkFirewall.Client.exceptions.InvalidTokenException" * "NetworkFirewall.Client.exceptions.ResourceOwnerCheckException" NetworkFirewall / Client / disassociate_subnets disassociate_subnets ******************** NetworkFirewall.Client.disassociate_subnets(**kwargs) Removes the specified subnet associations from the firewall. This removes the firewall endpoints from the subnets and removes any network filtering protections that the endpoints were providing. See also: AWS API Documentation **Request Syntax** response = client.disassociate_subnets( UpdateToken='string', FirewallArn='string', FirewallName='string', SubnetIds=[ 'string', ] ) Parameters: * **UpdateToken** (*string*) -- An optional token that you can use for optimistic locking. Network Firewall returns a token to your requests that access the firewall. The token marks the state of the firewall resource at the time of the request. To make an unconditional change to the firewall, omit the token in your update request. Without the token, Network Firewall performs your updates regardless of whether the firewall has changed since you last retrieved it. To make a conditional change to the firewall, provide the token in your update request. Network Firewall uses the token to ensure that the firewall hasn't changed since you last retrieved it. If it has changed, the operation fails with an "InvalidTokenException". If this happens, retrieve the firewall again to get a current copy of it with a new token. Reapply your changes as needed, then try the operation again using the new token. * **FirewallArn** (*string*) -- The Amazon Resource Name (ARN) of the firewall. You must specify the ARN or the name, and you can specify both. * **FirewallName** (*string*) -- The descriptive name of the firewall. You can't change the name of a firewall after you create it. You must specify the ARN or the name, and you can specify both. * **SubnetIds** (*list*) -- **[REQUIRED]** The unique identifiers for the subnets that you want to disassociate. * *(string) --* Return type: dict Returns: **Response Syntax** { 'FirewallArn': 'string', 'FirewallName': 'string', 'SubnetMappings': [ { 'SubnetId': 'string', 'IPAddressType': 'DUALSTACK'|'IPV4'|'IPV6' }, ], 'UpdateToken': 'string' } **Response Structure** * *(dict) --* * **FirewallArn** *(string) --* The Amazon Resource Name (ARN) of the firewall. * **FirewallName** *(string) --* The descriptive name of the firewall. You can't change the name of a firewall after you create it. * **SubnetMappings** *(list) --* The IDs of the subnets that are associated with the firewall. * *(dict) --* The ID for a subnet that's used in an association with a firewall. This is used in CreateFirewall, AssociateSubnets, and CreateVpcEndpointAssociation. Network Firewall creates an instance of the associated firewall in each subnet that you specify, to filter traffic in the subnet's Availability Zone. * **SubnetId** *(string) --* The unique identifier for the subnet. * **IPAddressType** *(string) --* The subnet's IP address type. You can't change the IP address type after you create the subnet. * **UpdateToken** *(string) --* An optional token that you can use for optimistic locking. Network Firewall returns a token to your requests that access the firewall. The token marks the state of the firewall resource at the time of the request. To make an unconditional change to the firewall, omit the token in your update request. Without the token, Network Firewall performs your updates regardless of whether the firewall has changed since you last retrieved it. To make a conditional change to the firewall, provide the token in your update request. Network Firewall uses the token to ensure that the firewall hasn't changed since you last retrieved it. If it has changed, the operation fails with an "InvalidTokenException". If this happens, retrieve the firewall again to get a current copy of it with a new token. Reapply your changes as needed, then try the operation again using the new token. **Exceptions** * "NetworkFirewall.Client.exceptions.InvalidRequestException" * "NetworkFirewall.Client.exceptions.InternalServerError" * "NetworkFirewall.Client.exceptions.ResourceNotFoundException" * "NetworkFirewall.Client.exceptions.ThrottlingException" * "NetworkFirewall.Client.exceptions.InvalidTokenException" * "NetworkFirewall.Client.exceptions.InvalidOperationException" NetworkFirewall / Client / describe_logging_configuration describe_logging_configuration ****************************** NetworkFirewall.Client.describe_logging_configuration(**kwargs) Returns the logging configuration for the specified firewall. See also: AWS API Documentation **Request Syntax** response = client.describe_logging_configuration( FirewallArn='string', FirewallName='string' ) Parameters: * **FirewallArn** (*string*) -- The Amazon Resource Name (ARN) of the firewall. You must specify the ARN or the name, and you can specify both. * **FirewallName** (*string*) -- The descriptive name of the firewall. You can't change the name of a firewall after you create it. You must specify the ARN or the name, and you can specify both. Return type: dict Returns: **Response Syntax** { 'FirewallArn': 'string', 'LoggingConfiguration': { 'LogDestinationConfigs': [ { 'LogType': 'ALERT'|'FLOW'|'TLS', 'LogDestinationType': 'S3'|'CloudWatchLogs'|'KinesisDataFirehose', 'LogDestination': { 'string': 'string' } }, ] }, 'EnableMonitoringDashboard': True|False } **Response Structure** * *(dict) --* * **FirewallArn** *(string) --* The Amazon Resource Name (ARN) of the firewall. * **LoggingConfiguration** *(dict) --* Defines how Network Firewall performs logging for a Firewall. * **LogDestinationConfigs** *(list) --* Defines the logging destinations for the logs for a firewall. Network Firewall generates logs for stateful rule groups. * *(dict) --* Defines where Network Firewall sends logs for the firewall for one log type. This is used in LoggingConfiguration. You can send each type of log to an Amazon S3 bucket, a CloudWatch log group, or a Firehose delivery stream. Network Firewall generates logs for stateful rule groups. You can save alert, flow, and TLS log types. * **LogType** *(string) --* The type of log to record. You can record the following types of logs from your Network Firewall stateful engine. * "ALERT" - Logs for traffic that matches your stateful rules and that have an action that sends an alert. A stateful rule sends alerts for the rule actions DROP, ALERT, and REJECT. For more information, see StatefulRule. * "FLOW" - Standard network traffic flow logs. The stateful rules engine records flow logs for all network traffic that it receives. Each flow log record captures the network flow for a specific standard stateless rule group. * "TLS" - Logs for events that are related to TLS inspection. For more information, see Inspecting SSL/TLS traffic with TLS inspection configurations in the *Network Firewall Developer Guide*. * **LogDestinationType** *(string) --* The type of storage destination to send these logs to. You can send logs to an Amazon S3 bucket, a CloudWatch log group, or a Firehose delivery stream. * **LogDestination** *(dict) --* The named location for the logs, provided in a key:value mapping that is specific to the chosen destination type. * For an Amazon S3 bucket, provide the name of the bucket, with key "bucketName", and optionally provide a prefix, with key "prefix". The following example specifies an Amazon S3 bucket named "DOC- EXAMPLE-BUCKET" and the prefix "alerts": ""LogDestination": { "bucketName": "DOC-EXAMPLE- BUCKET", "prefix": "alerts" }" * For a CloudWatch log group, provide the name of the CloudWatch log group, with key "logGroup". The following example specifies a log group named "alert-log-group": ""LogDestination": { "logGroup": "alert-log-group" }" * For a Firehose delivery stream, provide the name of the delivery stream, with key "deliveryStream". The following example specifies a delivery stream named "alert-delivery-stream": ""LogDestination": { "deliveryStream": "alert-delivery-stream" }" * *(string) --* * *(string) --* * **EnableMonitoringDashboard** *(boolean) --* A boolean that reflects whether or not the firewall monitoring dashboard is enabled on a firewall. Returns "TRUE" when the firewall monitoring dashboard is enabled on the firewall. Returns "FALSE" when the firewall monitoring dashboard is not enabled on the firewall. **Exceptions** * "NetworkFirewall.Client.exceptions.InvalidRequestException" * "NetworkFirewall.Client.exceptions.InternalServerError" * "NetworkFirewall.Client.exceptions.ResourceNotFoundException" * "NetworkFirewall.Client.exceptions.ThrottlingException" NetworkFirewall / Client / list_analysis_reports list_analysis_reports ********************* NetworkFirewall.Client.list_analysis_reports(**kwargs) Returns a list of all traffic analysis reports generated within the last 30 days. See also: AWS API Documentation **Request Syntax** response = client.list_analysis_reports( FirewallName='string', FirewallArn='string', NextToken='string', MaxResults=123 ) Parameters: * **FirewallName** (*string*) -- The descriptive name of the firewall. You can't change the name of a firewall after you create it. You must specify the ARN or the name, and you can specify both. * **FirewallArn** (*string*) -- The Amazon Resource Name (ARN) of the firewall. You must specify the ARN or the name, and you can specify both. * **NextToken** (*string*) -- When you request a list of objects with a "MaxResults" setting, if the number of objects that are still available for retrieval exceeds the maximum you requested, Network Firewall returns a "NextToken" value in the response. To retrieve the next batch of objects, use the token returned from the prior request in your next request. * **MaxResults** (*integer*) -- The maximum number of objects that you want Network Firewall to return for this request. If more objects are available, in the response, Network Firewall provides a "NextToken" value that you can use in a subsequent call to get the next batch of objects. Return type: dict Returns: **Response Syntax** { 'AnalysisReports': [ { 'AnalysisReportId': 'string', 'AnalysisType': 'TLS_SNI'|'HTTP_HOST', 'ReportTime': datetime(2015, 1, 1), 'Status': 'string' }, ], 'NextToken': 'string' } **Response Structure** * *(dict) --* * **AnalysisReports** *(list) --* The "id" and "ReportTime" associated with a requested analysis report. Does not provide the status of the analysis report. * *(dict) --* A report that captures key activity from the last 30 days of network traffic monitored by your firewall. You can generate up to one report per traffic type, per 30 day period. For example, when you successfully create an HTTP traffic report, you cannot create another HTTP traffic report until 30 days pass. Alternatively, if you generate a report that combines metrics on both HTTP and HTTPS traffic, you cannot create another report for either traffic type until 30 days pass. * **AnalysisReportId** *(string) --* The unique ID of the query that ran when you requested an analysis report. * **AnalysisType** *(string) --* The type of traffic that will be used to generate a report. * **ReportTime** *(datetime) --* The date and time the analysis report was ran. * **Status** *(string) --* The status of the analysis report you specify. Statuses include "RUNNING", "COMPLETED", or "FAILED". * **NextToken** *(string) --* When you request a list of objects with a "MaxResults" setting, if the number of objects that are still available for retrieval exceeds the maximum you requested, Network Firewall returns a "NextToken" value in the response. To retrieve the next batch of objects, use the token returned from the prior request in your next request. **Exceptions** * "NetworkFirewall.Client.exceptions.InvalidRequestException" * "NetworkFirewall.Client.exceptions.InternalServerError" * "NetworkFirewall.Client.exceptions.ResourceNotFoundException" * "NetworkFirewall.Client.exceptions.ThrottlingException" NetworkFirewall / Client / describe_firewall_metadata describe_firewall_metadata ************************** NetworkFirewall.Client.describe_firewall_metadata(**kwargs) Returns the high-level information about a firewall, including the Availability Zones where the Firewall is currently in use. See also: AWS API Documentation **Request Syntax** response = client.describe_firewall_metadata( FirewallArn='string' ) Parameters: **FirewallArn** (*string*) -- The Amazon Resource Name (ARN) of the firewall. Return type: dict Returns: **Response Syntax** { 'FirewallArn': 'string', 'FirewallPolicyArn': 'string', 'Description': 'string', 'Status': 'PROVISIONING'|'DELETING'|'READY', 'SupportedAvailabilityZones': { 'string': { 'IPAddressType': 'DUALSTACK'|'IPV4'|'IPV6' } }, 'TransitGatewayAttachmentId': 'string' } **Response Structure** * *(dict) --* * **FirewallArn** *(string) --* The Amazon Resource Name (ARN) of the firewall. * **FirewallPolicyArn** *(string) --* The Amazon Resource Name (ARN) of the firewall policy. * **Description** *(string) --* A description of the firewall. * **Status** *(string) --* The readiness of the configured firewall to handle network traffic across all of the Availability Zones where you have it configured. This setting is "READY" only when the "ConfigurationSyncStateSummary" value is "IN_SYNC" and the "Attachment" "Status" values for all of the configured subnets are "READY". * **SupportedAvailabilityZones** *(dict) --* The Availability Zones that the firewall currently supports. This includes all Availability Zones for which the firewall has a subnet defined. * *(string) --* * *(dict) --* High-level information about an Availability Zone where the firewall has an endpoint defined. * **IPAddressType** *(string) --* The IP address type of the Firewall subnet in the Availability Zone. You can't change the IP address type after you create the subnet. * **TransitGatewayAttachmentId** *(string) --* The unique identifier of the transit gateway attachment associated with this firewall. This field is only present for transit gateway-attached firewalls. **Exceptions** * "NetworkFirewall.Client.exceptions.InvalidRequestException" * "NetworkFirewall.Client.exceptions.InternalServerError" * "NetworkFirewall.Client.exceptions.ResourceNotFoundException" * "NetworkFirewall.Client.exceptions.ThrottlingException" NetworkFirewall / Client / delete_rule_group delete_rule_group ***************** NetworkFirewall.Client.delete_rule_group(**kwargs) Deletes the specified RuleGroup. See also: AWS API Documentation **Request Syntax** response = client.delete_rule_group( RuleGroupName='string', RuleGroupArn='string', Type='STATELESS'|'STATEFUL' ) Parameters: * **RuleGroupName** (*string*) -- The descriptive name of the rule group. You can't change the name of a rule group after you create it. You must specify the ARN or the name, and you can specify both. * **RuleGroupArn** (*string*) -- The Amazon Resource Name (ARN) of the rule group. You must specify the ARN or the name, and you can specify both. * **Type** (*string*) -- Indicates whether the rule group is stateless or stateful. If the rule group is stateless, it contains stateless rules. If it is stateful, it contains stateful rules. Note: This setting is required for requests that do not include the "RuleGroupARN". Return type: dict Returns: **Response Syntax** { 'RuleGroupResponse': { 'RuleGroupArn': 'string', 'RuleGroupName': 'string', 'RuleGroupId': 'string', 'Description': 'string', 'Type': 'STATELESS'|'STATEFUL', 'Capacity': 123, 'RuleGroupStatus': 'ACTIVE'|'DELETING'|'ERROR', 'Tags': [ { 'Key': 'string', 'Value': 'string' }, ], 'ConsumedCapacity': 123, 'NumberOfAssociations': 123, 'EncryptionConfiguration': { 'KeyId': 'string', 'Type': 'CUSTOMER_KMS'|'AWS_OWNED_KMS_KEY' }, 'SourceMetadata': { 'SourceArn': 'string', 'SourceUpdateToken': 'string' }, 'SnsTopic': 'string', 'LastModifiedTime': datetime(2015, 1, 1), 'AnalysisResults': [ { 'IdentifiedRuleIds': [ 'string', ], 'IdentifiedType': 'STATELESS_RULE_FORWARDING_ASYMMETRICALLY'|'STATELESS_RULE_CONTAINS_TCP_FLAGS', 'AnalysisDetail': 'string' }, ], 'SummaryConfiguration': { 'RuleOptions': [ 'SID'|'MSG'|'METADATA', ] } } } **Response Structure** * *(dict) --* * **RuleGroupResponse** *(dict) --* The high-level properties of a rule group. This, along with the RuleGroup, define the rule group. You can retrieve all objects for a rule group by calling DescribeRuleGroup. * **RuleGroupArn** *(string) --* The Amazon Resource Name (ARN) of the rule group. Note: If this response is for a create request that had "DryRun" set to "TRUE", then this ARN is a placeholder that isn't attached to a valid resource. * **RuleGroupName** *(string) --* The descriptive name of the rule group. You can't change the name of a rule group after you create it. * **RuleGroupId** *(string) --* The unique identifier for the rule group. * **Description** *(string) --* A description of the rule group. * **Type** *(string) --* Indicates whether the rule group is stateless or stateful. If the rule group is stateless, it contains stateless rules. If it is stateful, it contains stateful rules. * **Capacity** *(integer) --* The maximum operating resources that this rule group can use. Rule group capacity is fixed at creation. When you update a rule group, you are limited to this capacity. When you reference a rule group from a firewall policy, Network Firewall reserves this capacity for the rule group. You can retrieve the capacity that would be required for a rule group before you create the rule group by calling CreateRuleGroup with "DryRun" set to "TRUE". * **RuleGroupStatus** *(string) --* Detailed information about the current status of a rule group. * **Tags** *(list) --* The key:value pairs to associate with the resource. * *(dict) --* A key:value pair associated with an Amazon Web Services resource. The key:value pair can be anything you define. Typically, the tag key represents a category (such as "environment") and the tag value represents a specific value within that category (such as "test," "development," or "production"). You can add up to 50 tags to each Amazon Web Services resource. * **Key** *(string) --* The part of the key:value pair that defines a tag. You can use a tag key to describe a category of information, such as "customer." Tag keys are case- sensitive. * **Value** *(string) --* The part of the key:value pair that defines a tag. You can use a tag value to describe a specific value within a category, such as "companyA" or "companyB." Tag values are case-sensitive. * **ConsumedCapacity** *(integer) --* The number of capacity units currently consumed by the rule group rules. * **NumberOfAssociations** *(integer) --* The number of firewall policies that use this rule group. * **EncryptionConfiguration** *(dict) --* A complex type that contains the Amazon Web Services KMS encryption configuration settings for your rule group. * **KeyId** *(string) --* The ID of the Amazon Web Services Key Management Service (KMS) customer managed key. You can use any of the key identifiers that KMS supports, unless you're using a key that's managed by another account. If you're using a key managed by another account, then specify the key ARN. For more information, see Key ID in the *Amazon Web Services KMS Developer Guide*. * **Type** *(string) --* The type of Amazon Web Services KMS key to use for encryption of your Network Firewall resources. * **SourceMetadata** *(dict) --* A complex type that contains metadata about the rule group that your own rule group is copied from. You can use the metadata to track the version updates made to the originating rule group. * **SourceArn** *(string) --* The Amazon Resource Name (ARN) of the rule group that your own rule group is copied from. * **SourceUpdateToken** *(string) --* The update token of the Amazon Web Services managed rule group that your own rule group is copied from. To determine the update token for the managed rule group, call DescribeRuleGroup. * **SnsTopic** *(string) --* The Amazon Resource Name (ARN) of the Amazon Simple Notification Service SNS topic that's used to record changes to the managed rule group. You can subscribe to the SNS topic to receive notifications when the managed rule group is modified, such as for new versions and for version expiration. For more information, see the Amazon Simple Notification Service Developer Guide.. * **LastModifiedTime** *(datetime) --* The last time that the rule group was changed. * **AnalysisResults** *(list) --* The list of analysis results for "AnalyzeRuleGroup". If you set "AnalyzeRuleGroup" to "TRUE" in CreateRuleGroup, UpdateRuleGroup, or DescribeRuleGroup, Network Firewall analyzes the rule group and identifies the rules that might adversely effect your firewall's functionality. For example, if Network Firewall detects a rule that's routing traffic asymmetrically, which impacts the service's ability to properly process traffic, the service includes the rule in the list of analysis results. * *(dict) --* The analysis result for Network Firewall's stateless rule group analyzer. Every time you call CreateRuleGroup, UpdateRuleGroup, or DescribeRuleGroup on a stateless rule group, Network Firewall analyzes the stateless rule groups in your account and identifies the rules that might adversely effect your firewall's functionality. For example, if Network Firewall detects a rule that's routing traffic asymmetrically, which impacts the service's ability to properly process traffic, the service includes the rule in a list of analysis results. The "AnalysisResult" data type is not related to traffic analysis reports you generate using StartAnalysisReport. For information on traffic analysis report results, see AnalysisTypeReportResult. * **IdentifiedRuleIds** *(list) --* The priority number of the stateless rules identified in the analysis. * *(string) --* * **IdentifiedType** *(string) --* The types of rule configurations that Network Firewall analyzes your rule groups for. Network Firewall analyzes stateless rule groups for the following types of rule configurations: * "STATELESS_RULE_FORWARDING_ASYMMETRICALLY" Cause: One or more stateless rules with the action "pass" or "forward" are forwarding traffic asymmetrically. Specifically, the rule's set of source IP addresses or their associated port numbers, don't match the set of destination IP addresses or their associated port numbers. To mitigate: Make sure that there's an existing return path. For example, if the rule allows traffic from source 10.1.0.0/24 to destination 20.1.0.0/24, you should allow return traffic from source 20.1.0.0/24 to destination 10.1.0.0/24. * "STATELESS_RULE_CONTAINS_TCP_FLAGS" Cause: At least one stateless rule with the action "pass" or "forward" contains TCP flags that are inconsistent in the forward and return directions. To mitigate: Prevent asymmetric routing issues caused by TCP flags by following these actions: * Remove unnecessary TCP flag inspections from the rules. * If you need to inspect TCP flags, check that the rules correctly account for changes in TCP flags throughout the TCP connection cycle, for example "SYN" and "ACK" flags used in a 3-way TCP handshake. * **AnalysisDetail** *(string) --* Provides analysis details for the identified rule. * **SummaryConfiguration** *(dict) --* A complex type containing the currently selected rule option fields that will be displayed for rule summarization returned by DescribeRuleGroupSummary. * The "RuleOptions" specified in SummaryConfiguration * Rule metadata organization preferences * **RuleOptions** *(list) --* Specifies the selected rule options returned by DescribeRuleGroupSummary. * *(string) --* **Exceptions** * "NetworkFirewall.Client.exceptions.InvalidRequestException" * "NetworkFirewall.Client.exceptions.ResourceNotFoundException" * "NetworkFirewall.Client.exceptions.ThrottlingException" * "NetworkFirewall.Client.exceptions.InternalServerError" * "NetworkFirewall.Client.exceptions.UnsupportedOperationException" * "NetworkFirewall.Client.exceptions.InvalidOperationException" NetworkFirewall / Client / describe_firewall_policy describe_firewall_policy ************************ NetworkFirewall.Client.describe_firewall_policy(**kwargs) Returns the data objects for the specified firewall policy. See also: AWS API Documentation **Request Syntax** response = client.describe_firewall_policy( FirewallPolicyName='string', FirewallPolicyArn='string' ) Parameters: * **FirewallPolicyName** (*string*) -- The descriptive name of the firewall policy. You can't change the name of a firewall policy after you create it. You must specify the ARN or the name, and you can specify both. * **FirewallPolicyArn** (*string*) -- The Amazon Resource Name (ARN) of the firewall policy. You must specify the ARN or the name, and you can specify both. Return type: dict Returns: **Response Syntax** { 'UpdateToken': 'string', 'FirewallPolicyResponse': { 'FirewallPolicyName': 'string', 'FirewallPolicyArn': 'string', 'FirewallPolicyId': 'string', 'Description': 'string', 'FirewallPolicyStatus': 'ACTIVE'|'DELETING'|'ERROR', 'Tags': [ { 'Key': 'string', 'Value': 'string' }, ], 'ConsumedStatelessRuleCapacity': 123, 'ConsumedStatefulRuleCapacity': 123, 'NumberOfAssociations': 123, 'EncryptionConfiguration': { 'KeyId': 'string', 'Type': 'CUSTOMER_KMS'|'AWS_OWNED_KMS_KEY' }, 'LastModifiedTime': datetime(2015, 1, 1) }, 'FirewallPolicy': { 'StatelessRuleGroupReferences': [ { 'ResourceArn': 'string', 'Priority': 123 }, ], 'StatelessDefaultActions': [ 'string', ], 'StatelessFragmentDefaultActions': [ 'string', ], 'StatelessCustomActions': [ { 'ActionName': 'string', 'ActionDefinition': { 'PublishMetricAction': { 'Dimensions': [ { 'Value': 'string' }, ] } } }, ], 'StatefulRuleGroupReferences': [ { 'ResourceArn': 'string', 'Priority': 123, 'Override': { 'Action': 'DROP_TO_ALERT' }, 'DeepThreatInspection': True|False }, ], 'StatefulDefaultActions': [ 'string', ], 'StatefulEngineOptions': { 'RuleOrder': 'DEFAULT_ACTION_ORDER'|'STRICT_ORDER', 'StreamExceptionPolicy': 'DROP'|'CONTINUE'|'REJECT', 'FlowTimeouts': { 'TcpIdleTimeoutSeconds': 123 } }, 'TLSInspectionConfigurationArn': 'string', 'PolicyVariables': { 'RuleVariables': { 'string': { 'Definition': [ 'string', ] } } } } } **Response Structure** * *(dict) --* * **UpdateToken** *(string) --* A token used for optimistic locking. Network Firewall returns a token to your requests that access the firewall policy. The token marks the state of the policy resource at the time of the request. To make changes to the policy, you provide the token in your request. Network Firewall uses the token to ensure that the policy hasn't changed since you last retrieved it. If it has changed, the operation fails with an "InvalidTokenException". If this happens, retrieve the firewall policy again to get a current copy of it with current token. Reapply your changes as needed, then try the operation again using the new token. * **FirewallPolicyResponse** *(dict) --* The high-level properties of a firewall policy. This, along with the FirewallPolicy, define the policy. You can retrieve all objects for a firewall policy by calling DescribeFirewallPolicy. * **FirewallPolicyName** *(string) --* The descriptive name of the firewall policy. You can't change the name of a firewall policy after you create it. * **FirewallPolicyArn** *(string) --* The Amazon Resource Name (ARN) of the firewall policy. Note: If this response is for a create request that had "DryRun" set to "TRUE", then this ARN is a placeholder that isn't attached to a valid resource. * **FirewallPolicyId** *(string) --* The unique identifier for the firewall policy. * **Description** *(string) --* A description of the firewall policy. * **FirewallPolicyStatus** *(string) --* The current status of the firewall policy. You can retrieve this for a firewall policy by calling DescribeFirewallPolicy and providing the firewall policy's name or ARN. * **Tags** *(list) --* The key:value pairs to associate with the resource. * *(dict) --* A key:value pair associated with an Amazon Web Services resource. The key:value pair can be anything you define. Typically, the tag key represents a category (such as "environment") and the tag value represents a specific value within that category (such as "test," "development," or "production"). You can add up to 50 tags to each Amazon Web Services resource. * **Key** *(string) --* The part of the key:value pair that defines a tag. You can use a tag key to describe a category of information, such as "customer." Tag keys are case- sensitive. * **Value** *(string) --* The part of the key:value pair that defines a tag. You can use a tag value to describe a specific value within a category, such as "companyA" or "companyB." Tag values are case-sensitive. * **ConsumedStatelessRuleCapacity** *(integer) --* The number of capacity units currently consumed by the policy's stateless rules. * **ConsumedStatefulRuleCapacity** *(integer) --* The number of capacity units currently consumed by the policy's stateful rules. * **NumberOfAssociations** *(integer) --* The number of firewalls that are associated with this firewall policy. * **EncryptionConfiguration** *(dict) --* A complex type that contains the Amazon Web Services KMS encryption configuration settings for your firewall policy. * **KeyId** *(string) --* The ID of the Amazon Web Services Key Management Service (KMS) customer managed key. You can use any of the key identifiers that KMS supports, unless you're using a key that's managed by another account. If you're using a key managed by another account, then specify the key ARN. For more information, see Key ID in the *Amazon Web Services KMS Developer Guide*. * **Type** *(string) --* The type of Amazon Web Services KMS key to use for encryption of your Network Firewall resources. * **LastModifiedTime** *(datetime) --* The last time that the firewall policy was changed. * **FirewallPolicy** *(dict) --* The policy for the specified firewall policy. * **StatelessRuleGroupReferences** *(list) --* References to the stateless rule groups that are used in the policy. These define the matching criteria in stateless rules. * *(dict) --* Identifier for a single stateless rule group, used in a firewall policy to refer to the rule group. * **ResourceArn** *(string) --* The Amazon Resource Name (ARN) of the stateless rule group. * **Priority** *(integer) --* An integer setting that indicates the order in which to run the stateless rule groups in a single FirewallPolicy. Network Firewall applies each stateless rule group to a packet starting with the group that has the lowest priority setting. You must ensure that the priority settings are unique within each policy. * **StatelessDefaultActions** *(list) --* The actions to take on a packet if it doesn't match any of the stateless rules in the policy. If you want non- matching packets to be forwarded for stateful inspection, specify "aws:forward_to_sfe". You must specify one of the standard actions: "aws:pass", "aws:drop", or "aws:forward_to_sfe". In addition, you can specify custom actions that are compatible with your standard section choice. For example, you could specify "["aws:pass"]" or you could specify "["aws:pass", “customActionName”]". For information about compatibility, see the custom action descriptions under CustomAction. * *(string) --* * **StatelessFragmentDefaultActions** *(list) --* The actions to take on a fragmented UDP packet if it doesn't match any of the stateless rules in the policy. Network Firewall only manages UDP packet fragments and silently drops packet fragments for other protocols. If you want non-matching fragmented UDP packets to be forwarded for stateful inspection, specify "aws:forward_to_sfe". You must specify one of the standard actions: "aws:pass", "aws:drop", or "aws:forward_to_sfe". In addition, you can specify custom actions that are compatible with your standard section choice. For example, you could specify "["aws:pass"]" or you could specify "["aws:pass", “customActionName”]". For information about compatibility, see the custom action descriptions under CustomAction. * *(string) --* * **StatelessCustomActions** *(list) --* The custom action definitions that are available for use in the firewall policy's "StatelessDefaultActions" setting. You name each custom action that you define, and then you can use it by name in your default actions specifications. * *(dict) --* An optional, non-standard action to use for stateless packet handling. You can define this in addition to the standard action that you must specify. You define and name the custom actions that you want to be able to use, and then you reference them by name in your actions settings. You can use custom actions in the following places: * In a rule group's StatelessRulesAndCustomActions specification. The custom actions are available for use by name inside the "StatelessRulesAndCustomActions" where you define them. You can use them for your stateless rule actions to specify what to do with a packet that matches the rule's match attributes. * In a FirewallPolicy specification, in "StatelessCustomActions". The custom actions are available for use inside the policy where you define them. You can use them for the policy's default stateless actions settings to specify what to do with packets that don't match any of the policy's stateless rules. * **ActionName** *(string) --* The descriptive name of the custom action. You can't change the name of a custom action after you create it. * **ActionDefinition** *(dict) --* The custom action associated with the action name. * **PublishMetricAction** *(dict) --* Stateless inspection criteria that publishes the specified metrics to Amazon CloudWatch for the matching packet. This setting defines a CloudWatch dimension value to be published. You can pair this custom action with any of the standard stateless rule actions. For example, you could pair this in a rule action with the standard action that forwards the packet for stateful inspection. Then, when a packet matches the rule, Network Firewall publishes metrics for the packet and forwards it. * **Dimensions** *(list) --* * *(dict) --* The value to use in an Amazon CloudWatch custom metric dimension. This is used in the "PublishMetrics" CustomAction. A CloudWatch custom metric dimension is a name/value pair that's part of the identity of a metric. Network Firewall sets the dimension name to "CustomAction" and you provide the dimension value. For more information about CloudWatch custom metric dimensions, see Publishing Custom Metrics in the Amazon CloudWatch User Guide. * **Value** *(string) --* The value to use in the custom metric dimension. * **StatefulRuleGroupReferences** *(list) --* References to the stateful rule groups that are used in the policy. These define the inspection criteria in stateful rules. * *(dict) --* Identifier for a single stateful rule group, used in a firewall policy to refer to a rule group. * **ResourceArn** *(string) --* The Amazon Resource Name (ARN) of the stateful rule group. * **Priority** *(integer) --* An integer setting that indicates the order in which to run the stateful rule groups in a single FirewallPolicy. This setting only applies to firewall policies that specify the "STRICT_ORDER" rule order in the stateful engine options settings. Network Firewall evalutes each stateful rule group against a packet starting with the group that has the lowest priority setting. You must ensure that the priority settings are unique within each policy. You can change the priority settings of your rule groups at any time. To make it easier to insert rule groups later, number them so there's a wide range in between, for example use 100, 200, and so on. * **Override** *(dict) --* The action that allows the policy owner to override the behavior of the rule group within a policy. * **Action** *(string) --* The action that changes the rule group from "DROP" to "ALERT". This only applies to managed rule groups. * **DeepThreatInspection** *(boolean) --* Network Firewall plans to augment the active threat defense managed rule group with an additional deep threat inspection capability. When this capability is released, Amazon Web Services will analyze service logs of network traffic processed by these rule groups to identify threat indicators across customers. Amazon Web Services will use these threat indicators to improve the active threat defense managed rule groups and protect the security of Amazon Web Services customers and services. Note: Customers can opt-out of deep threat inspection at any time through the Network Firewall console or API. When customers opt out, Network Firewall will not use the network traffic processed by those customers' active threat defense rule groups for rule group improvement. * **StatefulDefaultActions** *(list) --* The default actions to take on a packet that doesn't match any stateful rules. The stateful default action is optional, and is only valid when using the strict rule order. Valid values of the stateful default action: * aws:drop_strict * aws:drop_established * aws:alert_strict * aws:alert_established For more information, see Strict evaluation order in the *Network Firewall Developer Guide*. * *(string) --* * **StatefulEngineOptions** *(dict) --* Additional options governing how Network Firewall handles stateful rules. The stateful rule groups that you use in your policy must have stateful rule options settings that are compatible with these settings. * **RuleOrder** *(string) --* Indicates how to manage the order of stateful rule evaluation for the policy. "STRICT_ORDER" is the recommended option, but "DEFAULT_ACTION_ORDER" is the default option. With "STRICT_ORDER", provide your rules in the order that you want them to be evaluated. You can then choose one or more default actions for packets that don't match any rules. Choose "STRICT_ORDER" to have the stateful rules engine determine the evaluation order of your rules. The default action for this rule order is "PASS", followed by "DROP", "REJECT", and "ALERT" actions. Stateful rules are provided to the rule engine as Suricata compatible strings, and Suricata evaluates them based on your settings. For more information, see Evaluation order for stateful rules in the *Network Firewall Developer Guide*. * **StreamExceptionPolicy** *(string) --* Configures how Network Firewall processes traffic when a network connection breaks midstream. Network connections can break due to disruptions in external networks or within the firewall itself. * "DROP" - Network Firewall fails closed and drops all subsequent traffic going to the firewall. This is the default behavior. * "CONTINUE" - Network Firewall continues to apply rules to the subsequent traffic without context from traffic before the break. This impacts the behavior of rules that depend on this context. For example, if you have a stateful rule to "drop http" traffic, Network Firewall won't match the traffic for this rule because the service won't have the context from session initialization defining the application layer protocol as HTTP. However, this behavior is rule dependent—a TCP-layer rule using a "flow:stateless" rule would still match, as would the "aws:drop_strict" default action. * "REJECT" - Network Firewall fails closed and drops all subsequent traffic going to the firewall. Network Firewall also sends a TCP reject packet back to your client so that the client can immediately establish a new session. Network Firewall will have context about the new session and will apply rules to the subsequent traffic. * **FlowTimeouts** *(dict) --* Configures the amount of time that can pass without any traffic sent through the firewall before the firewall determines that the connection is idle. * **TcpIdleTimeoutSeconds** *(integer) --* The number of seconds that can pass without any TCP traffic sent through the firewall before the firewall determines that the connection is idle. After the idle timeout passes, data packets are dropped, however, the next TCP SYN packet is considered a new flow and is processed by the firewall. Clients or targets can use TCP keepalive packets to reset the idle timeout. You can define the "TcpIdleTimeoutSeconds" value to be between 60 and 6000 seconds. If no value is provided, it defaults to 350 seconds. * **TLSInspectionConfigurationArn** *(string) --* The Amazon Resource Name (ARN) of the TLS inspection configuration. * **PolicyVariables** *(dict) --* Contains variables that you can use to override default Suricata settings in your firewall policy. * **RuleVariables** *(dict) --* The IPv4 or IPv6 addresses in CIDR notation to use for the Suricata "HOME_NET" variable. If your firewall uses an inspection VPC, you might want to override the "HOME_NET" variable with the CIDRs of your home networks. If you don't override "HOME_NET" with your own CIDRs, Network Firewall by default uses the CIDR of your inspection VPC. * *(string) --* * *(dict) --* A list of IP addresses and address ranges, in CIDR notation. This is part of a RuleVariables. * **Definition** *(list) --* The list of IP addresses and address ranges, in CIDR notation. * *(string) --* **Exceptions** * "NetworkFirewall.Client.exceptions.InvalidRequestException" * "NetworkFirewall.Client.exceptions.ResourceNotFoundException" * "NetworkFirewall.Client.exceptions.ThrottlingException" * "NetworkFirewall.Client.exceptions.InternalServerError" NetworkFirewall / Client / can_paginate can_paginate ************ NetworkFirewall.Client.can_paginate(operation_name) Check if an operation can be paginated. Parameters: **operation_name** (*string*) -- The operation name. This is the same name as the method name on the client. For example, if the method name is "create_foo", and you'd normally invoke the operation as "client.create_foo(**kwargs)", if the "create_foo" operation can be paginated, you can use the call "client.get_paginator("create_foo")". Returns: "True" if the operation can be paginated, "False" otherwise. NetworkFirewall / Client / describe_vpc_endpoint_association describe_vpc_endpoint_association ********************************* NetworkFirewall.Client.describe_vpc_endpoint_association(**kwargs) Returns the data object for the specified VPC endpoint association. See also: AWS API Documentation **Request Syntax** response = client.describe_vpc_endpoint_association( VpcEndpointAssociationArn='string' ) Parameters: **VpcEndpointAssociationArn** (*string*) -- **[REQUIRED]** The Amazon Resource Name (ARN) of a VPC endpoint association. Return type: dict Returns: **Response Syntax** { 'VpcEndpointAssociation': { 'VpcEndpointAssociationId': 'string', 'VpcEndpointAssociationArn': 'string', 'FirewallArn': 'string', 'VpcId': 'string', 'SubnetMapping': { 'SubnetId': 'string', 'IPAddressType': 'DUALSTACK'|'IPV4'|'IPV6' }, 'Description': 'string', 'Tags': [ { 'Key': 'string', 'Value': 'string' }, ] }, 'VpcEndpointAssociationStatus': { 'Status': 'PROVISIONING'|'DELETING'|'READY', 'AssociationSyncState': { 'string': { 'Attachment': { 'SubnetId': 'string', 'EndpointId': 'string', 'Status': 'CREATING'|'DELETING'|'FAILED'|'ERROR'|'SCALING'|'READY', 'StatusMessage': 'string' } } } } } **Response Structure** * *(dict) --* * **VpcEndpointAssociation** *(dict) --* The configuration settings for the VPC endpoint association. These settings include the firewall and the VPC and subnet to use for the firewall endpoint. * **VpcEndpointAssociationId** *(string) --* The unique identifier of the VPC endpoint association. * **VpcEndpointAssociationArn** *(string) --* The Amazon Resource Name (ARN) of a VPC endpoint association. * **FirewallArn** *(string) --* The Amazon Resource Name (ARN) of the firewall. * **VpcId** *(string) --* The unique identifier of the VPC for the endpoint association. * **SubnetMapping** *(dict) --* The ID for a subnet that's used in an association with a firewall. This is used in CreateFirewall, AssociateSubnets, and CreateVpcEndpointAssociation. Network Firewall creates an instance of the associated firewall in each subnet that you specify, to filter traffic in the subnet's Availability Zone. * **SubnetId** *(string) --* The unique identifier for the subnet. * **IPAddressType** *(string) --* The subnet's IP address type. You can't change the IP address type after you create the subnet. * **Description** *(string) --* A description of the VPC endpoint association. * **Tags** *(list) --* The key:value pairs to associate with the resource. * *(dict) --* A key:value pair associated with an Amazon Web Services resource. The key:value pair can be anything you define. Typically, the tag key represents a category (such as "environment") and the tag value represents a specific value within that category (such as "test," "development," or "production"). You can add up to 50 tags to each Amazon Web Services resource. * **Key** *(string) --* The part of the key:value pair that defines a tag. You can use a tag key to describe a category of information, such as "customer." Tag keys are case- sensitive. * **Value** *(string) --* The part of the key:value pair that defines a tag. You can use a tag value to describe a specific value within a category, such as "companyA" or "companyB." Tag values are case-sensitive. * **VpcEndpointAssociationStatus** *(dict) --* Detailed information about the current status of a VpcEndpointAssociation. You can retrieve this by calling DescribeVpcEndpointAssociation and providing the VPC endpoint association ARN. * **Status** *(string) --* The readiness of the configured firewall endpoint to handle network traffic. * **AssociationSyncState** *(dict) --* The list of the Availability Zone sync states for all subnets that are defined by the firewall. * *(string) --* * *(dict) --* The status of the firewall endpoint defined by a "VpcEndpointAssociation". * **Attachment** *(dict) --* The definition and status of the firewall endpoint for a single subnet. In each configured subnet, Network Firewall instantiates a firewall endpoint to handle network traffic. This data type is used for any firewall endpoint type: * For "Firewall.SubnetMappings", this "Attachment" is part of the "FirewallStatus" sync states information. You define firewall subnets using "CreateFirewall" and "AssociateSubnets". * For "VpcEndpointAssociation", this "Attachment" is part of the "VpcEndpointAssociationStatus" sync states information. You define these subnets using "CreateVpcEndpointAssociation". * **SubnetId** *(string) --* The unique identifier of the subnet that you've specified to be used for a firewall endpoint. * **EndpointId** *(string) --* The identifier of the firewall endpoint that Network Firewall has instantiated in the subnet. You use this to identify the firewall endpoint in the VPC route tables, when you redirect the VPC traffic through the endpoint. * **Status** *(string) --* The current status of the firewall endpoint instantiation in the subnet. When this value is "READY", the endpoint is available to handle network traffic. Otherwise, this value reflects its state, for example "CREATING" or "DELETING". * **StatusMessage** *(string) --* If Network Firewall fails to create or delete the firewall endpoint in the subnet, it populates this with the reason for the error or failure and how to resolve it. A "FAILED" status indicates a non- recoverable state, and a "ERROR" status indicates an issue that you can fix. Depending on the error, it can take as many as 15 minutes to populate this field. For more information about the causes for failiure or errors and solutions available for this field, see Troubleshooting firewall endpoint failures in the *Network Firewall Developer Guide*. **Exceptions** * "NetworkFirewall.Client.exceptions.InvalidRequestException" * "NetworkFirewall.Client.exceptions.InternalServerError" * "NetworkFirewall.Client.exceptions.ResourceNotFoundException" * "NetworkFirewall.Client.exceptions.ThrottlingException" NetworkFirewall / Client / update_rule_group update_rule_group ***************** NetworkFirewall.Client.update_rule_group(**kwargs) Updates the rule settings for the specified rule group. You use a rule group by reference in one or more firewall policies. When you modify a rule group, you modify all firewall policies that use the rule group. To update a rule group, first call DescribeRuleGroup to retrieve the current RuleGroup object, update the object as needed, and then provide the updated object to this call. See also: AWS API Documentation **Request Syntax** response = client.update_rule_group( UpdateToken='string', RuleGroupArn='string', RuleGroupName='string', RuleGroup={ 'RuleVariables': { 'IPSets': { 'string': { 'Definition': [ 'string', ] } }, 'PortSets': { 'string': { 'Definition': [ 'string', ] } } }, 'ReferenceSets': { 'IPSetReferences': { 'string': { 'ReferenceArn': 'string' } } }, 'RulesSource': { 'RulesString': 'string', 'RulesSourceList': { 'Targets': [ 'string', ], 'TargetTypes': [ 'TLS_SNI'|'HTTP_HOST', ], 'GeneratedRulesType': 'ALLOWLIST'|'DENYLIST' }, 'StatefulRules': [ { 'Action': 'PASS'|'DROP'|'ALERT'|'REJECT', 'Header': { 'Protocol': 'IP'|'TCP'|'UDP'|'ICMP'|'HTTP'|'FTP'|'TLS'|'SMB'|'DNS'|'DCERPC'|'SSH'|'SMTP'|'IMAP'|'MSN'|'KRB5'|'IKEV2'|'TFTP'|'NTP'|'DHCP'|'HTTP2'|'QUIC', 'Source': 'string', 'SourcePort': 'string', 'Direction': 'FORWARD'|'ANY', 'Destination': 'string', 'DestinationPort': 'string' }, 'RuleOptions': [ { 'Keyword': 'string', 'Settings': [ 'string', ] }, ] }, ], 'StatelessRulesAndCustomActions': { 'StatelessRules': [ { 'RuleDefinition': { 'MatchAttributes': { 'Sources': [ { 'AddressDefinition': 'string' }, ], 'Destinations': [ { 'AddressDefinition': 'string' }, ], 'SourcePorts': [ { 'FromPort': 123, 'ToPort': 123 }, ], 'DestinationPorts': [ { 'FromPort': 123, 'ToPort': 123 }, ], 'Protocols': [ 123, ], 'TCPFlags': [ { 'Flags': [ 'FIN'|'SYN'|'RST'|'PSH'|'ACK'|'URG'|'ECE'|'CWR', ], 'Masks': [ 'FIN'|'SYN'|'RST'|'PSH'|'ACK'|'URG'|'ECE'|'CWR', ] }, ] }, 'Actions': [ 'string', ] }, 'Priority': 123 }, ], 'CustomActions': [ { 'ActionName': 'string', 'ActionDefinition': { 'PublishMetricAction': { 'Dimensions': [ { 'Value': 'string' }, ] } } }, ] } }, 'StatefulRuleOptions': { 'RuleOrder': 'DEFAULT_ACTION_ORDER'|'STRICT_ORDER' } }, Rules='string', Type='STATELESS'|'STATEFUL', Description='string', DryRun=True|False, EncryptionConfiguration={ 'KeyId': 'string', 'Type': 'CUSTOMER_KMS'|'AWS_OWNED_KMS_KEY' }, SourceMetadata={ 'SourceArn': 'string', 'SourceUpdateToken': 'string' }, AnalyzeRuleGroup=True|False, SummaryConfiguration={ 'RuleOptions': [ 'SID'|'MSG'|'METADATA', ] } ) Parameters: * **UpdateToken** (*string*) -- **[REQUIRED]** A token used for optimistic locking. Network Firewall returns a token to your requests that access the rule group. The token marks the state of the rule group resource at the time of the request. To make changes to the rule group, you provide the token in your request. Network Firewall uses the token to ensure that the rule group hasn't changed since you last retrieved it. If it has changed, the operation fails with an "InvalidTokenException". If this happens, retrieve the rule group again to get a current copy of it with a current token. Reapply your changes as needed, then try the operation again using the new token. * **RuleGroupArn** (*string*) -- The Amazon Resource Name (ARN) of the rule group. You must specify the ARN or the name, and you can specify both. * **RuleGroupName** (*string*) -- The descriptive name of the rule group. You can't change the name of a rule group after you create it. You must specify the ARN or the name, and you can specify both. * **RuleGroup** (*dict*) -- An object that defines the rule group rules. Note: You must provide either this rule group setting or a "Rules" setting, but not both. * **RuleVariables** *(dict) --* Settings that are available for use in the rules in the rule group. You can only use these for stateful rule groups. * **IPSets** *(dict) --* A list of IP addresses and address ranges, in CIDR notation. * *(string) --* * *(dict) --* A list of IP addresses and address ranges, in CIDR notation. This is part of a RuleVariables. * **Definition** *(list) --* **[REQUIRED]** The list of IP addresses and address ranges, in CIDR notation. * *(string) --* * **PortSets** *(dict) --* A list of port ranges. * *(string) --* * *(dict) --* A set of port ranges for use in the rules in a rule group. * **Definition** *(list) --* The set of port ranges. * *(string) --* * **ReferenceSets** *(dict) --* The list of a rule group's reference sets. * **IPSetReferences** *(dict) --* The list of IP set references. * *(string) --* * *(dict) --* Configures one or more IP set references for a Suricata-compatible rule group. This is used in CreateRuleGroup or UpdateRuleGroup. An IP set reference is a rule variable that references resources that you create and manage in another Amazon Web Services service, such as an Amazon VPC prefix list. Network Firewall IP set references enable you to dynamically update the contents of your rules. When you create, update, or delete the resource you are referencing in your rule, Network Firewall automatically updates the rule's content with the changes. For more information about IP set references in Network Firewall, see Using IP set references in the *Network Firewall Developer Guide*. Network Firewall currently supports Amazon VPC prefix lists and resource groups in IP set references. * **ReferenceArn** *(string) --* The Amazon Resource Name (ARN) of the resource that you are referencing in your rule group. * **RulesSource** *(dict) --* **[REQUIRED]** The stateful rules or stateless rules for the rule group. * **RulesString** *(string) --* Stateful inspection criteria, provided in Suricata compatible rules. Suricata is an open-source threat detection framework that includes a standard rule-based language for network traffic inspection. These rules contain the inspection criteria and the action to take for traffic that matches the criteria, so this type of rule group doesn't have a separate action setting. Note: You can't use the "priority" keyword if the "RuleOrder" option in StatefulRuleOptions is set to "STRICT_ORDER". * **RulesSourceList** *(dict) --* Stateful inspection criteria for a domain list rule group. * **Targets** *(list) --* **[REQUIRED]** The domains that you want to inspect for in your traffic flows. Valid domain specifications are the following: * Explicit names. For example, "abc.example.com" matches only the domain "abc.example.com". * Names that use a domain wildcard, which you indicate with an initial ' "."'. For example, ".example.com" matches "example.com" and matches all subdomains of "example.com", such as "abc.example.com" and "www.example.com". * *(string) --* * **TargetTypes** *(list) --* **[REQUIRED]** The protocols you want to inspect. Specify "TLS_SNI" for "HTTPS". Specify "HTTP_HOST" for "HTTP". You can specify either or both. * *(string) --* * **GeneratedRulesType** *(string) --* **[REQUIRED]** Whether you want to allow or deny access to the domains in your target list. * **StatefulRules** *(list) --* An array of individual stateful rules inspection criteria to be used together in a stateful rule group. Use this option to specify simple Suricata rules with protocol, source and destination, ports, direction, and rule options. For information about the Suricata "Rules" format, see Rules Format. * *(dict) --* A single Suricata rules specification, for use in a stateful rule group. Use this option to specify a simple Suricata rule with protocol, source and destination, ports, direction, and rule options. For information about the Suricata "Rules" format, see Rules Format. * **Action** *(string) --* **[REQUIRED]** Defines what Network Firewall should do with the packets in a traffic flow when the flow matches the stateful rule criteria. For all actions, Network Firewall performs the specified action and discontinues stateful inspection of the traffic flow. The actions for a stateful rule are defined as follows: * **PASS** - Permits the packets to go to the intended destination. * **DROP** - Blocks the packets from going to the intended destination and sends an alert log message, if alert logging is configured in the Firewall LoggingConfiguration. * **ALERT** - Sends an alert log message, if alert logging is configured in the Firewall LoggingConfiguration. You can use this action to test a rule that you intend to use to drop traffic. You can enable the rule with "ALERT" action, verify in the logs that the rule is filtering as you want, then change the action to "DROP". * **REJECT** - Drops traffic that matches the conditions of the stateful rule, and sends a TCP reset packet back to sender of the packet. A TCP reset packet is a packet with no payload and an RST bit contained in the TCP header flags. REJECT is available only for TCP traffic. This option doesn't support FTP or IMAP protocols. * **Header** *(dict) --* **[REQUIRED]** The stateful inspection criteria for this rule, used to inspect traffic flows. * **Protocol** *(string) --* **[REQUIRED]** The protocol to inspect for. To specify all, you can use "IP", because all traffic on Amazon Web Services and on the internet is IP. * **Source** *(string) --* **[REQUIRED]** The source IP address or address range to inspect for, in CIDR notation. To match with any address, specify "ANY". Specify an IP address or a block of IP addresses in Classless Inter-Domain Routing (CIDR) notation. Network Firewall supports all address ranges for IPv4 and IPv6. Examples: * To configure Network Firewall to inspect for the IP address 192.0.2.44, specify "192.0.2.44/32". * To configure Network Firewall to inspect for IP addresses from 192.0.2.0 to 192.0.2.255, specify "192.0.2.0/24". * To configure Network Firewall to inspect for the IP address 1111:0000:0000:0000:0000:0000:0000:0111, specify "1111:0000:0000:0000:0000:0000:0000:0111/128". * To configure Network Firewall to inspect for IP addresses from 1111:0000:0000:0000:0000:0000:0000:0000 to 1111:0000:0000:0000:ffff:ffff:ffff:ffff, specify "1111:0000:0000:0000:0000:0000:0000:0000/64". For more information about CIDR notation, see the Wikipedia entry Classless Inter-Domain Routing. * **SourcePort** *(string) --* **[REQUIRED]** The source port to inspect for. You can specify an individual port, for example "1994" and you can specify a port range, for example "1990:1994". To match with any port, specify "ANY". * **Direction** *(string) --* **[REQUIRED]** The direction of traffic flow to inspect. If set to "ANY", the inspection matches bidirectional traffic, both from the source to the destination and from the destination to the source. If set to "FORWARD", the inspection only matches traffic going from the source to the destination. * **Destination** *(string) --* **[REQUIRED]** The destination IP address or address range to inspect for, in CIDR notation. To match with any address, specify "ANY". Specify an IP address or a block of IP addresses in Classless Inter-Domain Routing (CIDR) notation. Network Firewall supports all address ranges for IPv4 and IPv6. Examples: * To configure Network Firewall to inspect for the IP address 192.0.2.44, specify "192.0.2.44/32". * To configure Network Firewall to inspect for IP addresses from 192.0.2.0 to 192.0.2.255, specify "192.0.2.0/24". * To configure Network Firewall to inspect for the IP address 1111:0000:0000:0000:0000:0000:0000:0111, specify "1111:0000:0000:0000:0000:0000:0000:0111/128". * To configure Network Firewall to inspect for IP addresses from 1111:0000:0000:0000:0000:0000:0000:0000 to 1111:0000:0000:0000:ffff:ffff:ffff:ffff, specify "1111:0000:0000:0000:0000:0000:0000:0000/64". For more information about CIDR notation, see the Wikipedia entry Classless Inter-Domain Routing. * **DestinationPort** *(string) --* **[REQUIRED]** The destination port to inspect for. You can specify an individual port, for example "1994" and you can specify a port range, for example "1990:1994". To match with any port, specify "ANY". * **RuleOptions** *(list) --* **[REQUIRED]** Additional options for the rule. These are the Suricata "RuleOptions" settings. * *(dict) --* Additional settings for a stateful rule. This is part of the StatefulRule configuration. * **Keyword** *(string) --* **[REQUIRED]** The keyword for the Suricata compatible rule option. You must include a "sid" (signature ID), and can optionally include other keywords. For information about Suricata compatible keywords, see Rule options in the Suricata documentation. * **Settings** *(list) --* The settings of the Suricata compatible rule option. Rule options have zero or more setting values, and the number of possible and required settings depends on the "Keyword". For more information about the settings for specific options, see Rule options. * *(string) --* * **StatelessRulesAndCustomActions** *(dict) --* Stateless inspection criteria to be used in a stateless rule group. * **StatelessRules** *(list) --* **[REQUIRED]** Defines the set of stateless rules for use in a stateless rule group. * *(dict) --* A single stateless rule. This is used in StatelessRulesAndCustomActions. * **RuleDefinition** *(dict) --* **[REQUIRED]** Defines the stateless 5-tuple packet inspection criteria and the action to take on a packet that matches the criteria. * **MatchAttributes** *(dict) --* **[REQUIRED]** Criteria for Network Firewall to use to inspect an individual packet in stateless rule inspection. Each match attributes set can include one or more items such as IP address, CIDR range, port number, protocol, and TCP flags. * **Sources** *(list) --* The source IP addresses and address ranges to inspect for, in CIDR notation. If not specified, this matches with any source address. * *(dict) --* A single IP address specification. This is used in the MatchAttributes source and destination specifications. * **AddressDefinition** *(string) --* **[REQUIRED]** Specify an IP address or a block of IP addresses in Classless Inter-Domain Routing (CIDR) notation. Network Firewall supports all address ranges for IPv4 and IPv6. Examples: * To configure Network Firewall to inspect for the IP address 192.0.2.44, specify "192.0.2.44/32". * To configure Network Firewall to inspect for IP addresses from 192.0.2.0 to 192.0.2.255, specify "192.0.2.0/24". * To configure Network Firewall to inspect for the IP address 1111:0000:0000:0000:0000:0000:0000:0111, specify "1111:0000:0000:0000:0000:0000:00 00:0111/128". * To configure Network Firewall to inspect for IP addresses from 1111:0000:0000:0000:0000:0000:0000:0000 to 1111:0000:0000:0000:ffff:ffff:ffff:ffff, specify "1111:0000:0000:0000:0000:0000:00 00:0000/64". For more information about CIDR notation, see the Wikipedia entry Classless Inter- Domain Routing. * **Destinations** *(list) --* The destination IP addresses and address ranges to inspect for, in CIDR notation. If not specified, this matches with any destination address. * *(dict) --* A single IP address specification. This is used in the MatchAttributes source and destination specifications. * **AddressDefinition** *(string) --* **[REQUIRED]** Specify an IP address or a block of IP addresses in Classless Inter-Domain Routing (CIDR) notation. Network Firewall supports all address ranges for IPv4 and IPv6. Examples: * To configure Network Firewall to inspect for the IP address 192.0.2.44, specify "192.0.2.44/32". * To configure Network Firewall to inspect for IP addresses from 192.0.2.0 to 192.0.2.255, specify "192.0.2.0/24". * To configure Network Firewall to inspect for the IP address 1111:0000:0000:0000:0000:0000:0000:0111, specify "1111:0000:0000:0000:0000:0000:00 00:0111/128". * To configure Network Firewall to inspect for IP addresses from 1111:0000:0000:0000:0000:0000:0000:0000 to 1111:0000:0000:0000:ffff:ffff:ffff:ffff, specify "1111:0000:0000:0000:0000:0000:00 00:0000/64". For more information about CIDR notation, see the Wikipedia entry Classless Inter- Domain Routing. * **SourcePorts** *(list) --* The source port to inspect for. You can specify an individual port, for example "1994" and you can specify a port range, for example "1990:1994". To match with any port, specify "ANY". If not specified, this matches with any source port. This setting is only used for protocols 6 (TCP) and 17 (UDP). * *(dict) --* A single port range specification. This is used for source and destination port ranges in the stateless rule MatchAttributes, "SourcePorts", and "DestinationPorts" settings. * **FromPort** *(integer) --* **[REQUIRED]** The lower limit of the port range. This must be less than or equal to the "ToPort" specification. * **ToPort** *(integer) --* **[REQUIRED]** The upper limit of the port range. This must be greater than or equal to the "FromPort" specification. * **DestinationPorts** *(list) --* The destination port to inspect for. You can specify an individual port, for example "1994" and you can specify a port range, for example "1990:1994". To match with any port, specify "ANY". This setting is only used for protocols 6 (TCP) and 17 (UDP). * *(dict) --* A single port range specification. This is used for source and destination port ranges in the stateless rule MatchAttributes, "SourcePorts", and "DestinationPorts" settings. * **FromPort** *(integer) --* **[REQUIRED]** The lower limit of the port range. This must be less than or equal to the "ToPort" specification. * **ToPort** *(integer) --* **[REQUIRED]** The upper limit of the port range. This must be greater than or equal to the "FromPort" specification. * **Protocols** *(list) --* The protocols to inspect for, specified using the assigned internet protocol number (IANA) for each protocol. If not specified, this matches with any protocol. * *(integer) --* * **TCPFlags** *(list) --* The TCP flags and masks to inspect for. If not specified, this matches with any settings. This setting is only used for protocol 6 (TCP). * *(dict) --* TCP flags and masks to inspect packets for, used in stateless rules MatchAttributes settings. * **Flags** *(list) --* **[REQUIRED]** Used in conjunction with the "Masks" setting to define the flags that must be set and flags that must not be set in order for the packet to match. This setting can only specify values that are also specified in the "Masks" setting. For the flags that are specified in the masks setting, the following must be true for the packet to match: * The ones that are set in this flags setting must be set in the packet. * The ones that are not set in this flags setting must also not be set in the packet. * *(string) --* * **Masks** *(list) --* The set of flags to consider in the inspection. To inspect all flags in the valid values list, leave this with no setting. * *(string) --* * **Actions** *(list) --* **[REQUIRED]** The actions to take on a packet that matches one of the stateless rule definition's match attributes. You must specify a standard action and you can add custom actions. Note: Network Firewall only forwards a packet for stateful rule inspection if you specify "aws:forward_to_sfe" for a rule that the packet matches, or if the packet doesn't match any stateless rule and you specify "aws:forward_to_sfe" for the "StatelessDefaultActions" setting for the FirewallPolicy. For every rule, you must specify exactly one of the following standard actions. * **aws:pass** - Discontinues all inspection of the packet and permits it to go to its intended destination. * **aws:drop** - Discontinues all inspection of the packet and blocks it from going to its intended destination. * **aws:forward_to_sfe** - Discontinues stateless inspection of the packet and forwards it to the stateful rule engine for inspection. Additionally, you can specify a custom action. To do this, you define a custom action by name and type, then provide the name you've assigned to the action in this "Actions" setting. For information about the options, see CustomAction. To provide more than one action in this setting, separate the settings with a comma. For example, if you have a custom "PublishMetrics" action that you've named "MyMetricsAction", then you could specify the standard action "aws:pass" and the custom action with "[“aws:pass”, “MyMetricsAction”]". * *(string) --* * **Priority** *(integer) --* **[REQUIRED]** Indicates the order in which to run this rule relative to all of the rules that are defined for a stateless rule group. Network Firewall evaluates the rules in a rule group starting with the lowest priority setting. You must ensure that the priority settings are unique for the rule group. Each stateless rule group uses exactly one "StatelessRulesAndCustomActions" object, and each "StatelessRulesAndCustomActions" contains exactly one "StatelessRules" object. To ensure unique priority settings for your rule groups, set unique priorities for the stateless rules that you define inside any single "StatelessRules" object. You can change the priority settings of your rules at any time. To make it easier to insert rules later, number them so there's a wide range in between, for example use 100, 200, and so on. * **CustomActions** *(list) --* Defines an array of individual custom action definitions that are available for use by the stateless rules in this "StatelessRulesAndCustomActions" specification. You name each custom action that you define, and then you can use it by name in your StatelessRule RuleDefinition "Actions" specification. * *(dict) --* An optional, non-standard action to use for stateless packet handling. You can define this in addition to the standard action that you must specify. You define and name the custom actions that you want to be able to use, and then you reference them by name in your actions settings. You can use custom actions in the following places: * In a rule group's StatelessRulesAndCustomActions specification. The custom actions are available for use by name inside the "StatelessRulesAndCustomActions" where you define them. You can use them for your stateless rule actions to specify what to do with a packet that matches the rule's match attributes. * In a FirewallPolicy specification, in "StatelessCustomActions". The custom actions are available for use inside the policy where you define them. You can use them for the policy's default stateless actions settings to specify what to do with packets that don't match any of the policy's stateless rules. * **ActionName** *(string) --* **[REQUIRED]** The descriptive name of the custom action. You can't change the name of a custom action after you create it. * **ActionDefinition** *(dict) --* **[REQUIRED]** The custom action associated with the action name. * **PublishMetricAction** *(dict) --* Stateless inspection criteria that publishes the specified metrics to Amazon CloudWatch for the matching packet. This setting defines a CloudWatch dimension value to be published. You can pair this custom action with any of the standard stateless rule actions. For example, you could pair this in a rule action with the standard action that forwards the packet for stateful inspection. Then, when a packet matches the rule, Network Firewall publishes metrics for the packet and forwards it. * **Dimensions** *(list) --* **[REQUIRED]** * *(dict) --* The value to use in an Amazon CloudWatch custom metric dimension. This is used in the "PublishMetrics" CustomAction. A CloudWatch custom metric dimension is a name/value pair that's part of the identity of a metric. Network Firewall sets the dimension name to "CustomAction" and you provide the dimension value. For more information about CloudWatch custom metric dimensions, see Publishing Custom Metrics in the Amazon CloudWatch User Guide. * **Value** *(string) --* **[REQUIRED]** The value to use in the custom metric dimension. * **StatefulRuleOptions** *(dict) --* Additional options governing how Network Firewall handles stateful rules. The policies where you use your stateful rule group must have stateful rule options settings that are compatible with these settings. Some limitations apply; for more information, see Strict evaluation order in the *Network Firewall Developer Guide*. * **RuleOrder** *(string) --* Indicates how to manage the order of the rule evaluation for the rule group. "DEFAULT_ACTION_ORDER" is the default behavior. Stateful rules are provided to the rule engine as Suricata compatible strings, and Suricata evaluates them based on certain settings. For more information, see Evaluation order for stateful rules in the *Network Firewall Developer Guide*. * **Rules** (*string*) -- A string containing stateful rule group rules specifications in Suricata flat format, with one rule per line. Use this to import your existing Suricata compatible rule groups. Note: You must provide either this rules setting or a populated "RuleGroup" setting, but not both. You can provide your rule group specification in Suricata flat format through this setting when you create or update your rule group. The call response returns a RuleGroup object that Network Firewall has populated from your string. * **Type** (*string*) -- Indicates whether the rule group is stateless or stateful. If the rule group is stateless, it contains stateless rules. If it is stateful, it contains stateful rules. Note: This setting is required for requests that do not include the "RuleGroupARN". * **Description** (*string*) -- A description of the rule group. * **DryRun** (*boolean*) -- Indicates whether you want Network Firewall to just check the validity of the request, rather than run the request. If set to "TRUE", Network Firewall checks whether the request can run successfully, but doesn't actually make the requested changes. The call returns the value that the request would return if you ran it with dry run set to "FALSE", but doesn't make additions or changes to your resources. This option allows you to make sure that you have the required permissions to run the request and that your request parameters are valid. If set to "FALSE", Network Firewall makes the requested changes to your resources. * **EncryptionConfiguration** (*dict*) -- A complex type that contains settings for encryption of your rule group resources. * **KeyId** *(string) --* The ID of the Amazon Web Services Key Management Service (KMS) customer managed key. You can use any of the key identifiers that KMS supports, unless you're using a key that's managed by another account. If you're using a key managed by another account, then specify the key ARN. For more information, see Key ID in the *Amazon Web Services KMS Developer Guide*. * **Type** *(string) --* **[REQUIRED]** The type of Amazon Web Services KMS key to use for encryption of your Network Firewall resources. * **SourceMetadata** (*dict*) -- A complex type that contains metadata about the rule group that your own rule group is copied from. You can use the metadata to keep track of updates made to the originating rule group. * **SourceArn** *(string) --* The Amazon Resource Name (ARN) of the rule group that your own rule group is copied from. * **SourceUpdateToken** *(string) --* The update token of the Amazon Web Services managed rule group that your own rule group is copied from. To determine the update token for the managed rule group, call DescribeRuleGroup. * **AnalyzeRuleGroup** (*boolean*) -- Indicates whether you want Network Firewall to analyze the stateless rules in the rule group for rule behavior such as asymmetric routing. If set to "TRUE", Network Firewall runs the analysis and then updates the rule group for you. To run the stateless rule group analyzer without updating the rule group, set "DryRun" to "TRUE". * **SummaryConfiguration** (*dict*) -- Updates the selected summary configuration for a rule group. Changes affect subsequent responses from DescribeRuleGroupSummary. * **RuleOptions** *(list) --* Specifies the selected rule options returned by DescribeRuleGroupSummary. * *(string) --* Return type: dict Returns: **Response Syntax** { 'UpdateToken': 'string', 'RuleGroupResponse': { 'RuleGroupArn': 'string', 'RuleGroupName': 'string', 'RuleGroupId': 'string', 'Description': 'string', 'Type': 'STATELESS'|'STATEFUL', 'Capacity': 123, 'RuleGroupStatus': 'ACTIVE'|'DELETING'|'ERROR', 'Tags': [ { 'Key': 'string', 'Value': 'string' }, ], 'ConsumedCapacity': 123, 'NumberOfAssociations': 123, 'EncryptionConfiguration': { 'KeyId': 'string', 'Type': 'CUSTOMER_KMS'|'AWS_OWNED_KMS_KEY' }, 'SourceMetadata': { 'SourceArn': 'string', 'SourceUpdateToken': 'string' }, 'SnsTopic': 'string', 'LastModifiedTime': datetime(2015, 1, 1), 'AnalysisResults': [ { 'IdentifiedRuleIds': [ 'string', ], 'IdentifiedType': 'STATELESS_RULE_FORWARDING_ASYMMETRICALLY'|'STATELESS_RULE_CONTAINS_TCP_FLAGS', 'AnalysisDetail': 'string' }, ], 'SummaryConfiguration': { 'RuleOptions': [ 'SID'|'MSG'|'METADATA', ] } } } **Response Structure** * *(dict) --* * **UpdateToken** *(string) --* A token used for optimistic locking. Network Firewall returns a token to your requests that access the rule group. The token marks the state of the rule group resource at the time of the request. To make changes to the rule group, you provide the token in your request. Network Firewall uses the token to ensure that the rule group hasn't changed since you last retrieved it. If it has changed, the operation fails with an "InvalidTokenException". If this happens, retrieve the rule group again to get a current copy of it with a current token. Reapply your changes as needed, then try the operation again using the new token. * **RuleGroupResponse** *(dict) --* The high-level properties of a rule group. This, along with the RuleGroup, define the rule group. You can retrieve all objects for a rule group by calling DescribeRuleGroup. * **RuleGroupArn** *(string) --* The Amazon Resource Name (ARN) of the rule group. Note: If this response is for a create request that had "DryRun" set to "TRUE", then this ARN is a placeholder that isn't attached to a valid resource. * **RuleGroupName** *(string) --* The descriptive name of the rule group. You can't change the name of a rule group after you create it. * **RuleGroupId** *(string) --* The unique identifier for the rule group. * **Description** *(string) --* A description of the rule group. * **Type** *(string) --* Indicates whether the rule group is stateless or stateful. If the rule group is stateless, it contains stateless rules. If it is stateful, it contains stateful rules. * **Capacity** *(integer) --* The maximum operating resources that this rule group can use. Rule group capacity is fixed at creation. When you update a rule group, you are limited to this capacity. When you reference a rule group from a firewall policy, Network Firewall reserves this capacity for the rule group. You can retrieve the capacity that would be required for a rule group before you create the rule group by calling CreateRuleGroup with "DryRun" set to "TRUE". * **RuleGroupStatus** *(string) --* Detailed information about the current status of a rule group. * **Tags** *(list) --* The key:value pairs to associate with the resource. * *(dict) --* A key:value pair associated with an Amazon Web Services resource. The key:value pair can be anything you define. Typically, the tag key represents a category (such as "environment") and the tag value represents a specific value within that category (such as "test," "development," or "production"). You can add up to 50 tags to each Amazon Web Services resource. * **Key** *(string) --* The part of the key:value pair that defines a tag. You can use a tag key to describe a category of information, such as "customer." Tag keys are case- sensitive. * **Value** *(string) --* The part of the key:value pair that defines a tag. You can use a tag value to describe a specific value within a category, such as "companyA" or "companyB." Tag values are case-sensitive. * **ConsumedCapacity** *(integer) --* The number of capacity units currently consumed by the rule group rules. * **NumberOfAssociations** *(integer) --* The number of firewall policies that use this rule group. * **EncryptionConfiguration** *(dict) --* A complex type that contains the Amazon Web Services KMS encryption configuration settings for your rule group. * **KeyId** *(string) --* The ID of the Amazon Web Services Key Management Service (KMS) customer managed key. You can use any of the key identifiers that KMS supports, unless you're using a key that's managed by another account. If you're using a key managed by another account, then specify the key ARN. For more information, see Key ID in the *Amazon Web Services KMS Developer Guide*. * **Type** *(string) --* The type of Amazon Web Services KMS key to use for encryption of your Network Firewall resources. * **SourceMetadata** *(dict) --* A complex type that contains metadata about the rule group that your own rule group is copied from. You can use the metadata to track the version updates made to the originating rule group. * **SourceArn** *(string) --* The Amazon Resource Name (ARN) of the rule group that your own rule group is copied from. * **SourceUpdateToken** *(string) --* The update token of the Amazon Web Services managed rule group that your own rule group is copied from. To determine the update token for the managed rule group, call DescribeRuleGroup. * **SnsTopic** *(string) --* The Amazon Resource Name (ARN) of the Amazon Simple Notification Service SNS topic that's used to record changes to the managed rule group. You can subscribe to the SNS topic to receive notifications when the managed rule group is modified, such as for new versions and for version expiration. For more information, see the Amazon Simple Notification Service Developer Guide.. * **LastModifiedTime** *(datetime) --* The last time that the rule group was changed. * **AnalysisResults** *(list) --* The list of analysis results for "AnalyzeRuleGroup". If you set "AnalyzeRuleGroup" to "TRUE" in CreateRuleGroup, UpdateRuleGroup, or DescribeRuleGroup, Network Firewall analyzes the rule group and identifies the rules that might adversely effect your firewall's functionality. For example, if Network Firewall detects a rule that's routing traffic asymmetrically, which impacts the service's ability to properly process traffic, the service includes the rule in the list of analysis results. * *(dict) --* The analysis result for Network Firewall's stateless rule group analyzer. Every time you call CreateRuleGroup, UpdateRuleGroup, or DescribeRuleGroup on a stateless rule group, Network Firewall analyzes the stateless rule groups in your account and identifies the rules that might adversely effect your firewall's functionality. For example, if Network Firewall detects a rule that's routing traffic asymmetrically, which impacts the service's ability to properly process traffic, the service includes the rule in a list of analysis results. The "AnalysisResult" data type is not related to traffic analysis reports you generate using StartAnalysisReport. For information on traffic analysis report results, see AnalysisTypeReportResult. * **IdentifiedRuleIds** *(list) --* The priority number of the stateless rules identified in the analysis. * *(string) --* * **IdentifiedType** *(string) --* The types of rule configurations that Network Firewall analyzes your rule groups for. Network Firewall analyzes stateless rule groups for the following types of rule configurations: * "STATELESS_RULE_FORWARDING_ASYMMETRICALLY" Cause: One or more stateless rules with the action "pass" or "forward" are forwarding traffic asymmetrically. Specifically, the rule's set of source IP addresses or their associated port numbers, don't match the set of destination IP addresses or their associated port numbers. To mitigate: Make sure that there's an existing return path. For example, if the rule allows traffic from source 10.1.0.0/24 to destination 20.1.0.0/24, you should allow return traffic from source 20.1.0.0/24 to destination 10.1.0.0/24. * "STATELESS_RULE_CONTAINS_TCP_FLAGS" Cause: At least one stateless rule with the action "pass" or "forward" contains TCP flags that are inconsistent in the forward and return directions. To mitigate: Prevent asymmetric routing issues caused by TCP flags by following these actions: * Remove unnecessary TCP flag inspections from the rules. * If you need to inspect TCP flags, check that the rules correctly account for changes in TCP flags throughout the TCP connection cycle, for example "SYN" and "ACK" flags used in a 3-way TCP handshake. * **AnalysisDetail** *(string) --* Provides analysis details for the identified rule. * **SummaryConfiguration** *(dict) --* A complex type containing the currently selected rule option fields that will be displayed for rule summarization returned by DescribeRuleGroupSummary. * The "RuleOptions" specified in SummaryConfiguration * Rule metadata organization preferences * **RuleOptions** *(list) --* Specifies the selected rule options returned by DescribeRuleGroupSummary. * *(string) --* **Exceptions** * "NetworkFirewall.Client.exceptions.ResourceNotFoundException" * "NetworkFirewall.Client.exceptions.InvalidRequestException" * "NetworkFirewall.Client.exceptions.ThrottlingException" * "NetworkFirewall.Client.exceptions.InternalServerError" * "NetworkFirewall.Client.exceptions.InvalidTokenException" NetworkFirewall / Client / update_subnet_change_protection update_subnet_change_protection ******************************* NetworkFirewall.Client.update_subnet_change_protection(**kwargs) See also: AWS API Documentation **Request Syntax** response = client.update_subnet_change_protection( UpdateToken='string', FirewallArn='string', FirewallName='string', SubnetChangeProtection=True|False ) Parameters: * **UpdateToken** (*string*) -- An optional token that you can use for optimistic locking. Network Firewall returns a token to your requests that access the firewall. The token marks the state of the firewall resource at the time of the request. To make an unconditional change to the firewall, omit the token in your update request. Without the token, Network Firewall performs your updates regardless of whether the firewall has changed since you last retrieved it. To make a conditional change to the firewall, provide the token in your update request. Network Firewall uses the token to ensure that the firewall hasn't changed since you last retrieved it. If it has changed, the operation fails with an "InvalidTokenException". If this happens, retrieve the firewall again to get a current copy of it with a new token. Reapply your changes as needed, then try the operation again using the new token. * **FirewallArn** (*string*) -- The Amazon Resource Name (ARN) of the firewall. You must specify the ARN or the name, and you can specify both. * **FirewallName** (*string*) -- The descriptive name of the firewall. You can't change the name of a firewall after you create it. You must specify the ARN or the name, and you can specify both. * **SubnetChangeProtection** (*boolean*) -- **[REQUIRED]** A setting indicating whether the firewall is protected against changes to the subnet associations. Use this setting to protect against accidentally modifying the subnet associations for a firewall that is in use. When you create a firewall, the operation initializes this setting to "TRUE". Return type: dict Returns: **Response Syntax** { 'UpdateToken': 'string', 'FirewallArn': 'string', 'FirewallName': 'string', 'SubnetChangeProtection': True|False } **Response Structure** * *(dict) --* * **UpdateToken** *(string) --* An optional token that you can use for optimistic locking. Network Firewall returns a token to your requests that access the firewall. The token marks the state of the firewall resource at the time of the request. To make an unconditional change to the firewall, omit the token in your update request. Without the token, Network Firewall performs your updates regardless of whether the firewall has changed since you last retrieved it. To make a conditional change to the firewall, provide the token in your update request. Network Firewall uses the token to ensure that the firewall hasn't changed since you last retrieved it. If it has changed, the operation fails with an "InvalidTokenException". If this happens, retrieve the firewall again to get a current copy of it with a new token. Reapply your changes as needed, then try the operation again using the new token. * **FirewallArn** *(string) --* The Amazon Resource Name (ARN) of the firewall. * **FirewallName** *(string) --* The descriptive name of the firewall. You can't change the name of a firewall after you create it. * **SubnetChangeProtection** *(boolean) --* A setting indicating whether the firewall is protected against changes to the subnet associations. Use this setting to protect against accidentally modifying the subnet associations for a firewall that is in use. When you create a firewall, the operation initializes this setting to "TRUE". **Exceptions** * "NetworkFirewall.Client.exceptions.InvalidRequestException" * "NetworkFirewall.Client.exceptions.InternalServerError" * "NetworkFirewall.Client.exceptions.ResourceNotFoundException" * "NetworkFirewall.Client.exceptions.ThrottlingException" * "NetworkFirewall.Client.exceptions.InvalidTokenException" * "NetworkFirewall.Client.exceptions.ResourceOwnerCheckException" NetworkFirewall / Client / update_availability_zone_change_protection update_availability_zone_change_protection ****************************************** NetworkFirewall.Client.update_availability_zone_change_protection(**kwargs) Modifies the "AvailabilityZoneChangeProtection" setting for a transit gateway-attached firewall. When enabled, this setting prevents accidental changes to the firewall's Availability Zone configuration. This helps protect against disrupting traffic flow in production environments. When enabled, you must disable this protection before using AssociateAvailabilityZones or DisassociateAvailabilityZones to modify the firewall's Availability Zone configuration. See also: AWS API Documentation **Request Syntax** response = client.update_availability_zone_change_protection( UpdateToken='string', FirewallArn='string', FirewallName='string', AvailabilityZoneChangeProtection=True|False ) Parameters: * **UpdateToken** (*string*) -- An optional token that you can use for optimistic locking. Network Firewall returns a token to your requests that access the firewall. The token marks the state of the firewall resource at the time of the request. To make an unconditional change to the firewall, omit the token in your update request. Without the token, Network Firewall performs your updates regardless of whether the firewall has changed since you last retrieved it. To make a conditional change to the firewall, provide the token in your update request. Network Firewall uses the token to ensure that the firewall hasn't changed since you last retrieved it. If it has changed, the operation fails with an "InvalidTokenException". If this happens, retrieve the firewall again to get a current copy of it with a new token. Reapply your changes as needed, then try the operation again using the new token. * **FirewallArn** (*string*) -- The Amazon Resource Name (ARN) of the firewall. You must specify the ARN or the name, and you can specify both. * **FirewallName** (*string*) -- The descriptive name of the firewall. You can't change the name of a firewall after you create it. You must specify the ARN or the name, and you can specify both. * **AvailabilityZoneChangeProtection** (*boolean*) -- **[REQUIRED]** A setting indicating whether the firewall is protected against changes to the subnet associations. Use this setting to protect against accidentally modifying the subnet associations for a firewall that is in use. When you create a firewall, the operation initializes this setting to "TRUE". Return type: dict Returns: **Response Syntax** { 'UpdateToken': 'string', 'FirewallArn': 'string', 'FirewallName': 'string', 'AvailabilityZoneChangeProtection': True|False } **Response Structure** * *(dict) --* * **UpdateToken** *(string) --* An optional token that you can use for optimistic locking. Network Firewall returns a token to your requests that access the firewall. The token marks the state of the firewall resource at the time of the request. To make an unconditional change to the firewall, omit the token in your update request. Without the token, Network Firewall performs your updates regardless of whether the firewall has changed since you last retrieved it. To make a conditional change to the firewall, provide the token in your update request. Network Firewall uses the token to ensure that the firewall hasn't changed since you last retrieved it. If it has changed, the operation fails with an "InvalidTokenException". If this happens, retrieve the firewall again to get a current copy of it with a new token. Reapply your changes as needed, then try the operation again using the new token. * **FirewallArn** *(string) --* The Amazon Resource Name (ARN) of the firewall. * **FirewallName** *(string) --* The descriptive name of the firewall. You can't change the name of a firewall after you create it. * **AvailabilityZoneChangeProtection** *(boolean) --* A setting indicating whether the firewall is protected against changes to the subnet associations. Use this setting to protect against accidentally modifying the subnet associations for a firewall that is in use. When you create a firewall, the operation initializes this setting to "TRUE". **Exceptions** * "NetworkFirewall.Client.exceptions.InvalidRequestException" * "NetworkFirewall.Client.exceptions.InternalServerError" * "NetworkFirewall.Client.exceptions.ResourceNotFoundException" * "NetworkFirewall.Client.exceptions.ThrottlingException" * "NetworkFirewall.Client.exceptions.InvalidTokenException" * "NetworkFirewall.Client.exceptions.ResourceOwnerCheckException" NetworkFirewall / Client / describe_resource_policy describe_resource_policy ************************ NetworkFirewall.Client.describe_resource_policy(**kwargs) Retrieves a resource policy that you created in a PutResourcePolicy request. See also: AWS API Documentation **Request Syntax** response = client.describe_resource_policy( ResourceArn='string' ) Parameters: **ResourceArn** (*string*) -- **[REQUIRED]** The Amazon Resource Name (ARN) of the rule group or firewall policy whose resource policy you want to retrieve. Return type: dict Returns: **Response Syntax** { 'Policy': 'string' } **Response Structure** * *(dict) --* * **Policy** *(string) --* The IAM policy for the resource. **Exceptions** * "NetworkFirewall.Client.exceptions.InvalidRequestException" * "NetworkFirewall.Client.exceptions.InternalServerError" * "NetworkFirewall.Client.exceptions.ResourceNotFoundException" * "NetworkFirewall.Client.exceptions.ThrottlingException" NetworkFirewall / Client / describe_firewall describe_firewall ***************** NetworkFirewall.Client.describe_firewall(**kwargs) Returns the data objects for the specified firewall. See also: AWS API Documentation **Request Syntax** response = client.describe_firewall( FirewallName='string', FirewallArn='string' ) Parameters: * **FirewallName** (*string*) -- The descriptive name of the firewall. You can't change the name of a firewall after you create it. You must specify the ARN or the name, and you can specify both. * **FirewallArn** (*string*) -- The Amazon Resource Name (ARN) of the firewall. You must specify the ARN or the name, and you can specify both. Return type: dict Returns: **Response Syntax** { 'UpdateToken': 'string', 'Firewall': { 'FirewallName': 'string', 'FirewallArn': 'string', 'FirewallPolicyArn': 'string', 'VpcId': 'string', 'SubnetMappings': [ { 'SubnetId': 'string', 'IPAddressType': 'DUALSTACK'|'IPV4'|'IPV6' }, ], 'DeleteProtection': True|False, 'SubnetChangeProtection': True|False, 'FirewallPolicyChangeProtection': True|False, 'Description': 'string', 'FirewallId': 'string', 'Tags': [ { 'Key': 'string', 'Value': 'string' }, ], 'EncryptionConfiguration': { 'KeyId': 'string', 'Type': 'CUSTOMER_KMS'|'AWS_OWNED_KMS_KEY' }, 'NumberOfAssociations': 123, 'EnabledAnalysisTypes': [ 'TLS_SNI'|'HTTP_HOST', ], 'TransitGatewayId': 'string', 'TransitGatewayOwnerAccountId': 'string', 'AvailabilityZoneMappings': [ { 'AvailabilityZone': 'string' }, ], 'AvailabilityZoneChangeProtection': True|False }, 'FirewallStatus': { 'Status': 'PROVISIONING'|'DELETING'|'READY', 'ConfigurationSyncStateSummary': 'PENDING'|'IN_SYNC'|'CAPACITY_CONSTRAINED', 'SyncStates': { 'string': { 'Attachment': { 'SubnetId': 'string', 'EndpointId': 'string', 'Status': 'CREATING'|'DELETING'|'FAILED'|'ERROR'|'SCALING'|'READY', 'StatusMessage': 'string' }, 'Config': { 'string': { 'SyncStatus': 'PENDING'|'IN_SYNC'|'CAPACITY_CONSTRAINED', 'UpdateToken': 'string' } } } }, 'CapacityUsageSummary': { 'CIDRs': { 'AvailableCIDRCount': 123, 'UtilizedCIDRCount': 123, 'IPSetReferences': { 'string': { 'ResolvedCIDRCount': 123 } } } }, 'TransitGatewayAttachmentSyncState': { 'AttachmentId': 'string', 'TransitGatewayAttachmentStatus': 'CREATING'|'DELETING'|'DELETED'|'FAILED'|'ERROR'|'READY'|'PENDING_ACCEPTANCE'|'REJECTING'|'REJECTED', 'StatusMessage': 'string' } } } **Response Structure** * *(dict) --* * **UpdateToken** *(string) --* An optional token that you can use for optimistic locking. Network Firewall returns a token to your requests that access the firewall. The token marks the state of the firewall resource at the time of the request. To make an unconditional change to the firewall, omit the token in your update request. Without the token, Network Firewall performs your updates regardless of whether the firewall has changed since you last retrieved it. To make a conditional change to the firewall, provide the token in your update request. Network Firewall uses the token to ensure that the firewall hasn't changed since you last retrieved it. If it has changed, the operation fails with an "InvalidTokenException". If this happens, retrieve the firewall again to get a current copy of it with a new token. Reapply your changes as needed, then try the operation again using the new token. * **Firewall** *(dict) --* The configuration settings for the firewall. These settings include the firewall policy and the subnets in your VPC to use for the firewall endpoints. * **FirewallName** *(string) --* The descriptive name of the firewall. You can't change the name of a firewall after you create it. * **FirewallArn** *(string) --* The Amazon Resource Name (ARN) of the firewall. * **FirewallPolicyArn** *(string) --* The Amazon Resource Name (ARN) of the firewall policy. The relationship of firewall to firewall policy is many to one. Each firewall requires one firewall policy association, and you can use the same firewall policy for multiple firewalls. * **VpcId** *(string) --* The unique identifier of the VPC where the firewall is in use. * **SubnetMappings** *(list) --* The primary public subnets that Network Firewall is using for the firewall. Network Firewall creates a firewall endpoint in each subnet. Create a subnet mapping for each Availability Zone where you want to use the firewall. These subnets are all defined for a single, primary VPC, and each must belong to a different Availability Zone. Each of these subnets establishes the availability of the firewall in its Availability Zone. In addition to these subnets, you can define other endpoints for the firewall in "VpcEndpointAssociation" resources. You can define these additional endpoints for any VPC, and for any of the Availability Zones where the firewall resource already has a subnet mapping. VPC endpoint associations give you the ability to protect multiple VPCs using a single firewall, and to define multiple firewall endpoints for a VPC in a single Availability Zone. * *(dict) --* The ID for a subnet that's used in an association with a firewall. This is used in CreateFirewall, AssociateSubnets, and CreateVpcEndpointAssociation. Network Firewall creates an instance of the associated firewall in each subnet that you specify, to filter traffic in the subnet's Availability Zone. * **SubnetId** *(string) --* The unique identifier for the subnet. * **IPAddressType** *(string) --* The subnet's IP address type. You can't change the IP address type after you create the subnet. * **DeleteProtection** *(boolean) --* A flag indicating whether it is possible to delete the firewall. A setting of "TRUE" indicates that the firewall is protected against deletion. Use this setting to protect against accidentally deleting a firewall that is in use. When you create a firewall, the operation initializes this flag to "TRUE". * **SubnetChangeProtection** *(boolean) --* A setting indicating whether the firewall is protected against changes to the subnet associations. Use this setting to protect against accidentally modifying the subnet associations for a firewall that is in use. When you create a firewall, the operation initializes this setting to "TRUE". * **FirewallPolicyChangeProtection** *(boolean) --* A setting indicating whether the firewall is protected against a change to the firewall policy association. Use this setting to protect against accidentally modifying the firewall policy for a firewall that is in use. When you create a firewall, the operation initializes this setting to "TRUE". * **Description** *(string) --* A description of the firewall. * **FirewallId** *(string) --* The unique identifier for the firewall. * **Tags** *(list) --* * *(dict) --* A key:value pair associated with an Amazon Web Services resource. The key:value pair can be anything you define. Typically, the tag key represents a category (such as "environment") and the tag value represents a specific value within that category (such as "test," "development," or "production"). You can add up to 50 tags to each Amazon Web Services resource. * **Key** *(string) --* The part of the key:value pair that defines a tag. You can use a tag key to describe a category of information, such as "customer." Tag keys are case- sensitive. * **Value** *(string) --* The part of the key:value pair that defines a tag. You can use a tag value to describe a specific value within a category, such as "companyA" or "companyB." Tag values are case-sensitive. * **EncryptionConfiguration** *(dict) --* A complex type that contains the Amazon Web Services KMS encryption configuration settings for your firewall. * **KeyId** *(string) --* The ID of the Amazon Web Services Key Management Service (KMS) customer managed key. You can use any of the key identifiers that KMS supports, unless you're using a key that's managed by another account. If you're using a key managed by another account, then specify the key ARN. For more information, see Key ID in the *Amazon Web Services KMS Developer Guide*. * **Type** *(string) --* The type of Amazon Web Services KMS key to use for encryption of your Network Firewall resources. * **NumberOfAssociations** *(integer) --* The number of "VpcEndpointAssociation" resources that use this firewall. * **EnabledAnalysisTypes** *(list) --* An optional setting indicating the specific traffic analysis types to enable on the firewall. * *(string) --* * **TransitGatewayId** *(string) --* The unique identifier of the transit gateway associated with this firewall. This field is only present for transit gateway-attached firewalls. * **TransitGatewayOwnerAccountId** *(string) --* The Amazon Web Services account ID that owns the transit gateway. This may be different from the firewall owner's account ID when using a shared transit gateway. * **AvailabilityZoneMappings** *(list) --* The Availability Zones where the firewall endpoints are created for a transit gateway-attached firewall. Each mapping specifies an Availability Zone where the firewall processes traffic. * *(dict) --* Defines the mapping between an Availability Zone and a firewall endpoint for a transit gateway-attached firewall. Each mapping represents where the firewall can process traffic. You use these mappings when calling CreateFirewall, AssociateAvailabilityZones, and DisassociateAvailabilityZones. To retrieve the current Availability Zone mappings for a firewall, use DescribeFirewall. * **AvailabilityZone** *(string) --* The ID of the Availability Zone where the firewall endpoint is located. For example, "us-east-2a". The Availability Zone must be in the same Region as the transit gateway. * **AvailabilityZoneChangeProtection** *(boolean) --* A setting indicating whether the firewall is protected against changes to its Availability Zone configuration. When set to "TRUE", you must first disable this protection before adding or removing Availability Zones. * **FirewallStatus** *(dict) --* Detailed information about the current status of a Firewall. You can retrieve this for a firewall by calling DescribeFirewall and providing the firewall name and ARN. The firewall status indicates a combined status. It indicates whether all subnets are up-to-date with the latest firewall configurations, which is based on the sync states config values, and also whether all subnets have their endpoints fully enabled, based on their sync states attachment values. * **Status** *(string) --* The readiness of the configured firewall to handle network traffic across all of the Availability Zones where you have it configured. This setting is "READY" only when the "ConfigurationSyncStateSummary" value is "IN_SYNC" and the "Attachment" "Status" values for all of the configured subnets are "READY". * **ConfigurationSyncStateSummary** *(string) --* The configuration sync state for the firewall. This summarizes the "Config" settings in the "SyncStates" for this firewall status object. When you create a firewall or update its configuration, for example by adding a rule group to its firewall policy, Network Firewall distributes the configuration changes to all Availability Zones that have subnets defined for the firewall. This summary indicates whether the configuration changes have been applied everywhere. This status must be "IN_SYNC" for the firewall to be ready for use, but it doesn't indicate that the firewall is ready. The "Status" setting indicates firewall readiness. It's based on this setting and the readiness of the firewall endpoints to take traffic. * **SyncStates** *(dict) --* Status for the subnets that you've configured in the firewall. This contains one array element per Availability Zone where you've configured a subnet in the firewall. These objects provide detailed information for the settings "ConfigurationSyncStateSummary" and "Status". * *(string) --* * *(dict) --* The status of the firewall endpoint and firewall policy configuration for a single VPC subnet. This is part of the FirewallStatus. For each VPC subnet that you associate with a firewall, Network Firewall does the following: * Instantiates a firewall endpoint in the subnet, ready to take traffic. * Configures the endpoint with the current firewall policy settings, to provide the filtering behavior for the endpoint. When you update a firewall, for example to add a subnet association or change a rule group in the firewall policy, the affected sync states reflect out- of-sync or not ready status until the changes are complete. * **Attachment** *(dict) --* The configuration and status for a single firewall subnet. For each configured subnet, Network Firewall creates the attachment by instantiating the firewall endpoint in the subnet so that it's ready to take traffic. * **SubnetId** *(string) --* The unique identifier of the subnet that you've specified to be used for a firewall endpoint. * **EndpointId** *(string) --* The identifier of the firewall endpoint that Network Firewall has instantiated in the subnet. You use this to identify the firewall endpoint in the VPC route tables, when you redirect the VPC traffic through the endpoint. * **Status** *(string) --* The current status of the firewall endpoint instantiation in the subnet. When this value is "READY", the endpoint is available to handle network traffic. Otherwise, this value reflects its state, for example "CREATING" or "DELETING". * **StatusMessage** *(string) --* If Network Firewall fails to create or delete the firewall endpoint in the subnet, it populates this with the reason for the error or failure and how to resolve it. A "FAILED" status indicates a non- recoverable state, and a "ERROR" status indicates an issue that you can fix. Depending on the error, it can take as many as 15 minutes to populate this field. For more information about the causes for failiure or errors and solutions available for this field, see Troubleshooting firewall endpoint failures in the *Network Firewall Developer Guide*. * **Config** *(dict) --* The configuration status of the firewall endpoint in a single VPC subnet. Network Firewall provides each endpoint with the rules that are configured in the firewall policy. Each time you add a subnet or modify the associated firewall policy, Network Firewall synchronizes the rules in the endpoint, so it can properly filter network traffic. * *(string) --* * *(dict) --* Provides configuration status for a single policy or rule group that is used for a firewall endpoint. Network Firewall provides each endpoint with the rules that are configured in the firewall policy. Each time you add a subnet or modify the associated firewall policy, Network Firewall synchronizes the rules in the endpoint, so it can properly filter network traffic. This is part of a SyncState for a firewall. * **SyncStatus** *(string) --* Indicates whether this object is in sync with the version indicated in the update token. * **UpdateToken** *(string) --* The current version of the object that is either in sync or pending synchronization. * **CapacityUsageSummary** *(dict) --* Describes the capacity usage of the resources contained in a firewall's reference sets. Network Firewall calculates the capacity usage by taking an aggregated count of all of the resources used by all of the reference sets in a firewall. * **CIDRs** *(dict) --* Describes the capacity usage of the CIDR blocks used by the IP set references in a firewall. * **AvailableCIDRCount** *(integer) --* The number of CIDR blocks available for use by the IP set references in a firewall. * **UtilizedCIDRCount** *(integer) --* The number of CIDR blocks used by the IP set references in a firewall. * **IPSetReferences** *(dict) --* The list of the IP set references used by a firewall. * *(string) --* * *(dict) --* General information about the IP set. * **ResolvedCIDRCount** *(integer) --* Describes the total number of CIDR blocks currently in use by the IP set references in a firewall. To determine how many CIDR blocks are available for you to use in a firewall, you can call "AvailableCIDRCount". * **TransitGatewayAttachmentSyncState** *(dict) --* The synchronization state of the transit gateway attachment. This indicates whether the firewall's transit gateway configuration is properly synchronized and operational. Use this to verify that your transit gateway configuration changes have been applied. * **AttachmentId** *(string) --* The unique identifier of the transit gateway attachment. * **TransitGatewayAttachmentStatus** *(string) --* The current status of the transit gateway attachment. Valid values are: * "CREATING" - The attachment is being created * "DELETING" - The attachment is being deleted * "DELETED" - The attachment has been deleted * "FAILED" - The attachment creation has failed and cannot be recovered * "ERROR" - The attachment is in an error state that might be recoverable * "READY" - The attachment is active and processing traffic * "PENDING_ACCEPTANCE" - The attachment is waiting to be accepted * "REJECTING" - The attachment is in the process of being rejected * "REJECTED" - The attachment has been rejected * **StatusMessage** *(string) --* A message providing additional information about the current status, particularly useful when the transit gateway attachment is in a non- "READY" state. Valid values are: * "CREATING" - The attachment is being created * "DELETING" - The attachment is being deleted * "DELETED" - The attachment has been deleted * "FAILED" - The attachment creation has failed and cannot be recovered * "ERROR" - The attachment is in an error state that might be recoverable * "READY" - The attachment is active and processing traffic * "PENDING_ACCEPTANCE" - The attachment is waiting to be accepted * "REJECTING" - The attachment is in the process of being rejected * "REJECTED" - The attachment has been rejected For information about troubleshooting endpoint failures, see Troubleshooting firewall endpoint failures in the *Network Firewall Developer Guide*. **Exceptions** * "NetworkFirewall.Client.exceptions.InvalidRequestException" * "NetworkFirewall.Client.exceptions.InternalServerError" * "NetworkFirewall.Client.exceptions.ResourceNotFoundException" * "NetworkFirewall.Client.exceptions.ThrottlingException" NetworkFirewall / Client / update_firewall_description update_firewall_description *************************** NetworkFirewall.Client.update_firewall_description(**kwargs) Modifies the description for the specified firewall. Use the description to help you identify the firewall when you're working with it. See also: AWS API Documentation **Request Syntax** response = client.update_firewall_description( UpdateToken='string', FirewallArn='string', FirewallName='string', Description='string' ) Parameters: * **UpdateToken** (*string*) -- An optional token that you can use for optimistic locking. Network Firewall returns a token to your requests that access the firewall. The token marks the state of the firewall resource at the time of the request. To make an unconditional change to the firewall, omit the token in your update request. Without the token, Network Firewall performs your updates regardless of whether the firewall has changed since you last retrieved it. To make a conditional change to the firewall, provide the token in your update request. Network Firewall uses the token to ensure that the firewall hasn't changed since you last retrieved it. If it has changed, the operation fails with an "InvalidTokenException". If this happens, retrieve the firewall again to get a current copy of it with a new token. Reapply your changes as needed, then try the operation again using the new token. * **FirewallArn** (*string*) -- The Amazon Resource Name (ARN) of the firewall. You must specify the ARN or the name, and you can specify both. * **FirewallName** (*string*) -- The descriptive name of the firewall. You can't change the name of a firewall after you create it. You must specify the ARN or the name, and you can specify both. * **Description** (*string*) -- The new description for the firewall. If you omit this setting, Network Firewall removes the description for the firewall. Return type: dict Returns: **Response Syntax** { 'FirewallArn': 'string', 'FirewallName': 'string', 'Description': 'string', 'UpdateToken': 'string' } **Response Structure** * *(dict) --* * **FirewallArn** *(string) --* The Amazon Resource Name (ARN) of the firewall. * **FirewallName** *(string) --* The descriptive name of the firewall. You can't change the name of a firewall after you create it. * **Description** *(string) --* A description of the firewall. * **UpdateToken** *(string) --* An optional token that you can use for optimistic locking. Network Firewall returns a token to your requests that access the firewall. The token marks the state of the firewall resource at the time of the request. To make an unconditional change to the firewall, omit the token in your update request. Without the token, Network Firewall performs your updates regardless of whether the firewall has changed since you last retrieved it. To make a conditional change to the firewall, provide the token in your update request. Network Firewall uses the token to ensure that the firewall hasn't changed since you last retrieved it. If it has changed, the operation fails with an "InvalidTokenException". If this happens, retrieve the firewall again to get a current copy of it with a new token. Reapply your changes as needed, then try the operation again using the new token. **Exceptions** * "NetworkFirewall.Client.exceptions.InvalidRequestException" * "NetworkFirewall.Client.exceptions.InternalServerError" * "NetworkFirewall.Client.exceptions.ResourceNotFoundException" * "NetworkFirewall.Client.exceptions.ThrottlingException" * "NetworkFirewall.Client.exceptions.InvalidTokenException" NetworkFirewall / Client / list_vpc_endpoint_associations list_vpc_endpoint_associations ****************************** NetworkFirewall.Client.list_vpc_endpoint_associations(**kwargs) Retrieves the metadata for the VPC endpoint associations that you have defined. If you specify a fireawll, this returns only the endpoint associations for that firewall. Depending on your setting for max results and the number of associations, a single call might not return the full list. See also: AWS API Documentation **Request Syntax** response = client.list_vpc_endpoint_associations( NextToken='string', MaxResults=123, FirewallArn='string' ) Parameters: * **NextToken** (*string*) -- When you request a list of objects with a "MaxResults" setting, if the number of objects that are still available for retrieval exceeds the maximum you requested, Network Firewall returns a "NextToken" value in the response. To retrieve the next batch of objects, use the token returned from the prior request in your next request. * **MaxResults** (*integer*) -- The maximum number of objects that you want Network Firewall to return for this request. If more objects are available, in the response, Network Firewall provides a "NextToken" value that you can use in a subsequent call to get the next batch of objects. * **FirewallArn** (*string*) -- The Amazon Resource Name (ARN) of the firewall. If you don't specify this, Network Firewall retrieves all VPC endpoint associations that you have defined. Return type: dict Returns: **Response Syntax** { 'NextToken': 'string', 'VpcEndpointAssociations': [ { 'VpcEndpointAssociationArn': 'string' }, ] } **Response Structure** * *(dict) --* * **NextToken** *(string) --* When you request a list of objects with a "MaxResults" setting, if the number of objects that are still available for retrieval exceeds the maximum you requested, Network Firewall returns a "NextToken" value in the response. To retrieve the next batch of objects, use the token returned from the prior request in your next request. * **VpcEndpointAssociations** *(list) --* The VPC endpoint assocation metadata objects for the firewall that you specified. If you didn't specify a firewall, this is all VPC endpoint associations that you have defined. Depending on your setting for max results and the number of firewalls you have, a single call might not be the full list. * *(dict) --* High-level information about a VPC endpoint association, returned by "ListVpcEndpointAssociations". You can use the information provided in the metadata to retrieve and manage a VPC endpoint association. * **VpcEndpointAssociationArn** *(string) --* The Amazon Resource Name (ARN) of a VPC endpoint association. **Exceptions** * "NetworkFirewall.Client.exceptions.InvalidRequestException" * "NetworkFirewall.Client.exceptions.ThrottlingException" * "NetworkFirewall.Client.exceptions.InternalServerError" NetworkFirewall / Client / update_firewall_analysis_settings update_firewall_analysis_settings ********************************* NetworkFirewall.Client.update_firewall_analysis_settings(**kwargs) Enables specific types of firewall analysis on a specific firewall you define. See also: AWS API Documentation **Request Syntax** response = client.update_firewall_analysis_settings( EnabledAnalysisTypes=[ 'TLS_SNI'|'HTTP_HOST', ], FirewallArn='string', FirewallName='string', UpdateToken='string' ) Parameters: * **EnabledAnalysisTypes** (*list*) -- An optional setting indicating the specific traffic analysis types to enable on the firewall. * *(string) --* * **FirewallArn** (*string*) -- The Amazon Resource Name (ARN) of the firewall. You must specify the ARN or the name, and you can specify both. * **FirewallName** (*string*) -- The descriptive name of the firewall. You can't change the name of a firewall after you create it. You must specify the ARN or the name, and you can specify both. * **UpdateToken** (*string*) -- An optional token that you can use for optimistic locking. Network Firewall returns a token to your requests that access the firewall. The token marks the state of the firewall resource at the time of the request. To make an unconditional change to the firewall, omit the token in your update request. Without the token, Network Firewall performs your updates regardless of whether the firewall has changed since you last retrieved it. To make a conditional change to the firewall, provide the token in your update request. Network Firewall uses the token to ensure that the firewall hasn't changed since you last retrieved it. If it has changed, the operation fails with an "InvalidTokenException". If this happens, retrieve the firewall again to get a current copy of it with a new token. Reapply your changes as needed, then try the operation again using the new token. Return type: dict Returns: **Response Syntax** { 'EnabledAnalysisTypes': [ 'TLS_SNI'|'HTTP_HOST', ], 'FirewallArn': 'string', 'FirewallName': 'string', 'UpdateToken': 'string' } **Response Structure** * *(dict) --* * **EnabledAnalysisTypes** *(list) --* An optional setting indicating the specific traffic analysis types to enable on the firewall. * *(string) --* * **FirewallArn** *(string) --* The Amazon Resource Name (ARN) of the firewall. You must specify the ARN or the name, and you can specify both. * **FirewallName** *(string) --* The descriptive name of the firewall. You can't change the name of a firewall after you create it. You must specify the ARN or the name, and you can specify both. * **UpdateToken** *(string) --* An optional token that you can use for optimistic locking. Network Firewall returns a token to your requests that access the firewall. The token marks the state of the firewall resource at the time of the request. To make an unconditional change to the firewall, omit the token in your update request. Without the token, Network Firewall performs your updates regardless of whether the firewall has changed since you last retrieved it. To make a conditional change to the firewall, provide the token in your update request. Network Firewall uses the token to ensure that the firewall hasn't changed since you last retrieved it. If it has changed, the operation fails with an "InvalidTokenException". If this happens, retrieve the firewall again to get a current copy of it with a new token. Reapply your changes as needed, then try the operation again using the new token. **Exceptions** * "NetworkFirewall.Client.exceptions.InvalidRequestException" * "NetworkFirewall.Client.exceptions.InternalServerError" * "NetworkFirewall.Client.exceptions.ResourceNotFoundException" * "NetworkFirewall.Client.exceptions.ThrottlingException" NetworkFirewall / Client / delete_network_firewall_transit_gateway_attachment delete_network_firewall_transit_gateway_attachment ************************************************** NetworkFirewall.Client.delete_network_firewall_transit_gateway_attachment(**kwargs) Deletes a transit gateway attachment from a Network Firewall. Either the firewall owner or the transit gateway owner can delete the attachment. Warning: After you delete a transit gateway attachment, raffic will no longer flow through the firewall endpoints. After you initiate the delete operation, use DescribeFirewall to monitor the deletion status. See also: AWS API Documentation **Request Syntax** response = client.delete_network_firewall_transit_gateway_attachment( TransitGatewayAttachmentId='string' ) Parameters: **TransitGatewayAttachmentId** (*string*) -- **[REQUIRED]** Required. The unique identifier of the transit gateway attachment to delete. Return type: dict Returns: **Response Syntax** { 'TransitGatewayAttachmentId': 'string', 'TransitGatewayAttachmentStatus': 'CREATING'|'DELETING'|'DELETED'|'FAILED'|'ERROR'|'READY'|'PENDING_ACCEPTANCE'|'REJECTING'|'REJECTED' } **Response Structure** * *(dict) --* * **TransitGatewayAttachmentId** *(string) --* The ID of the transit gateway attachment that was deleted. * **TransitGatewayAttachmentStatus** *(string) --* The current status of the transit gateway attachment deletion process. Valid values are: * "CREATING" - The attachment is being created * "DELETING" - The attachment is being deleted * "DELETED" - The attachment has been deleted * "FAILED" - The attachment creation has failed and cannot be recovered * "ERROR" - The attachment is in an error state that might be recoverable * "READY" - The attachment is active and processing traffic * "PENDING_ACCEPTANCE" - The attachment is waiting to be accepted * "REJECTING" - The attachment is in the process of being rejected * "REJECTED" - The attachment has been rejected **Exceptions** * "NetworkFirewall.Client.exceptions.InvalidRequestException" * "NetworkFirewall.Client.exceptions.InternalServerError" * "NetworkFirewall.Client.exceptions.ResourceNotFoundException" * "NetworkFirewall.Client.exceptions.ThrottlingException" NetworkFirewall / Client / create_tls_inspection_configuration create_tls_inspection_configuration *********************************** NetworkFirewall.Client.create_tls_inspection_configuration(**kwargs) Creates an Network Firewall TLS inspection configuration. Network Firewall uses TLS inspection configurations to decrypt your firewall's inbound and outbound SSL/TLS traffic. After decryption, Network Firewall inspects the traffic according to your firewall policy's stateful rules, and then re-encrypts it before sending it to its destination. You can enable inspection of your firewall's inbound traffic, outbound traffic, or both. To use TLS inspection with your firewall, you must first import or provision certificates using ACM, create a TLS inspection configuration, add that configuration to a new firewall policy, and then associate that policy with your firewall. To update the settings for a TLS inspection configuration, use UpdateTLSInspectionConfiguration. To manage a TLS inspection configuration's tags, use the standard Amazon Web Services resource tagging operations, ListTagsForResource, TagResource, and UntagResource. To retrieve information about TLS inspection configurations, use ListTLSInspectionConfigurations and DescribeTLSInspectionConfiguration. For more information about TLS inspection configurations, see Inspecting SSL/TLS traffic with TLS inspection configurations in the *Network Firewall Developer Guide*. See also: AWS API Documentation **Request Syntax** response = client.create_tls_inspection_configuration( TLSInspectionConfigurationName='string', TLSInspectionConfiguration={ 'ServerCertificateConfigurations': [ { 'ServerCertificates': [ { 'ResourceArn': 'string' }, ], 'Scopes': [ { 'Sources': [ { 'AddressDefinition': 'string' }, ], 'Destinations': [ { 'AddressDefinition': 'string' }, ], 'SourcePorts': [ { 'FromPort': 123, 'ToPort': 123 }, ], 'DestinationPorts': [ { 'FromPort': 123, 'ToPort': 123 }, ], 'Protocols': [ 123, ] }, ], 'CertificateAuthorityArn': 'string', 'CheckCertificateRevocationStatus': { 'RevokedStatusAction': 'PASS'|'DROP'|'REJECT', 'UnknownStatusAction': 'PASS'|'DROP'|'REJECT' } }, ] }, Description='string', Tags=[ { 'Key': 'string', 'Value': 'string' }, ], EncryptionConfiguration={ 'KeyId': 'string', 'Type': 'CUSTOMER_KMS'|'AWS_OWNED_KMS_KEY' } ) Parameters: * **TLSInspectionConfigurationName** (*string*) -- **[REQUIRED]** The descriptive name of the TLS inspection configuration. You can't change the name of a TLS inspection configuration after you create it. * **TLSInspectionConfiguration** (*dict*) -- **[REQUIRED]** The object that defines a TLS inspection configuration. This, along with TLSInspectionConfigurationResponse, define the TLS inspection configuration. You can retrieve all objects for a TLS inspection configuration by calling DescribeTLSInspectionConfiguration. Network Firewall uses a TLS inspection configuration to decrypt traffic. Network Firewall re-encrypts the traffic before sending it to its destination. To use a TLS inspection configuration, you add it to a new Network Firewall firewall policy, then you apply the firewall policy to a firewall. Network Firewall acts as a proxy service to decrypt and inspect the traffic traveling through your firewalls. You can reference a TLS inspection configuration from more than one firewall policy, and you can use a firewall policy in more than one firewall. For more information about using TLS inspection configurations, see Inspecting SSL/TLS traffic with TLS inspection configurations in the *Network Firewall Developer Guide*. * **ServerCertificateConfigurations** *(list) --* Lists the server certificate configurations that are associated with the TLS configuration. * *(dict) --* Configures the Certificate Manager certificates and scope that Network Firewall uses to decrypt and re-encrypt traffic using a TLSInspectionConfiguration. You can configure "ServerCertificates" for inbound SSL/TLS inspection, a "CertificateAuthorityArn" for outbound SSL/TLS inspection, or both. For information about working with certificates for TLS inspection, see Using SSL/TLS server certficiates with TLS inspection configurations in the *Network Firewall Developer Guide*. Note: If a server certificate that's associated with your TLSInspectionConfiguration is revoked, deleted, or expired it can result in client-side TLS errors. * **ServerCertificates** *(list) --* The list of server certificates to use for inbound SSL/TLS inspection. * *(dict) --* Any Certificate Manager (ACM) Secure Sockets Layer/Transport Layer Security (SSL/TLS) server certificate that's associated with a ServerCertificateConfiguration. Used in a TLSInspectionConfiguration for inspection of inbound traffic to your firewall. You must request or import a SSL/TLS certificate into ACM for each domain Network Firewall needs to decrypt and inspect. Network Firewall uses the SSL/TLS certificates to decrypt specified inbound SSL/TLS traffic going to your firewall. For information about working with certificates in Certificate Manager, see Request a public certificate or Importing certificates in the *Certificate Manager User Guide*. * **ResourceArn** *(string) --* The Amazon Resource Name (ARN) of the Certificate Manager SSL/TLS server certificate that's used for inbound SSL/TLS inspection. * **Scopes** *(list) --* A list of scopes. * *(dict) --* Settings that define the Secure Sockets Layer/Transport Layer Security (SSL/TLS) traffic that Network Firewall should decrypt for inspection by the stateful rule engine. * **Sources** *(list) --* The source IP addresses and address ranges to decrypt for inspection, in CIDR notation. If not specified, this matches with any source address. * *(dict) --* A single IP address specification. This is used in the MatchAttributes source and destination specifications. * **AddressDefinition** *(string) --* **[REQUIRED]** Specify an IP address or a block of IP addresses in Classless Inter-Domain Routing (CIDR) notation. Network Firewall supports all address ranges for IPv4 and IPv6. Examples: * To configure Network Firewall to inspect for the IP address 192.0.2.44, specify "192.0.2.44/32". * To configure Network Firewall to inspect for IP addresses from 192.0.2.0 to 192.0.2.255, specify "192.0.2.0/24". * To configure Network Firewall to inspect for the IP address 1111:0000:0000:0000:0000:0000:0000:0111, specify "1111:0000:0000:0000:0000:0000:0000:0111/128". * To configure Network Firewall to inspect for IP addresses from 1111:0000:0000:0000:0000:0000:0000:0000 to 1111:0000:0000:0000:ffff:ffff:ffff:ffff, specify "1111:0000:0000:0000:0000:0000:0000:0000/64". For more information about CIDR notation, see the Wikipedia entry Classless Inter-Domain Routing. * **Destinations** *(list) --* The destination IP addresses and address ranges to decrypt for inspection, in CIDR notation. If not specified, this matches with any destination address. * *(dict) --* A single IP address specification. This is used in the MatchAttributes source and destination specifications. * **AddressDefinition** *(string) --* **[REQUIRED]** Specify an IP address or a block of IP addresses in Classless Inter-Domain Routing (CIDR) notation. Network Firewall supports all address ranges for IPv4 and IPv6. Examples: * To configure Network Firewall to inspect for the IP address 192.0.2.44, specify "192.0.2.44/32". * To configure Network Firewall to inspect for IP addresses from 192.0.2.0 to 192.0.2.255, specify "192.0.2.0/24". * To configure Network Firewall to inspect for the IP address 1111:0000:0000:0000:0000:0000:0000:0111, specify "1111:0000:0000:0000:0000:0000:0000:0111/128". * To configure Network Firewall to inspect for IP addresses from 1111:0000:0000:0000:0000:0000:0000:0000 to 1111:0000:0000:0000:ffff:ffff:ffff:ffff, specify "1111:0000:0000:0000:0000:0000:0000:0000/64". For more information about CIDR notation, see the Wikipedia entry Classless Inter-Domain Routing. * **SourcePorts** *(list) --* The source ports to decrypt for inspection, in Transmission Control Protocol (TCP) format. If not specified, this matches with any source port. You can specify individual ports, for example "1994", and you can specify port ranges, such as "1990:1994". * *(dict) --* A single port range specification. This is used for source and destination port ranges in the stateless rule MatchAttributes, "SourcePorts", and "DestinationPorts" settings. * **FromPort** *(integer) --* **[REQUIRED]** The lower limit of the port range. This must be less than or equal to the "ToPort" specification. * **ToPort** *(integer) --* **[REQUIRED]** The upper limit of the port range. This must be greater than or equal to the "FromPort" specification. * **DestinationPorts** *(list) --* The destination ports to decrypt for inspection, in Transmission Control Protocol (TCP) format. If not specified, this matches with any destination port. You can specify individual ports, for example "1994", and you can specify port ranges, such as "1990:1994". * *(dict) --* A single port range specification. This is used for source and destination port ranges in the stateless rule MatchAttributes, "SourcePorts", and "DestinationPorts" settings. * **FromPort** *(integer) --* **[REQUIRED]** The lower limit of the port range. This must be less than or equal to the "ToPort" specification. * **ToPort** *(integer) --* **[REQUIRED]** The upper limit of the port range. This must be greater than or equal to the "FromPort" specification. * **Protocols** *(list) --* The protocols to inspect for, specified using the assigned internet protocol number (IANA) for each protocol. If not specified, this matches with any protocol. Network Firewall currently supports only TCP. * *(integer) --* * **CertificateAuthorityArn** *(string) --* The Amazon Resource Name (ARN) of the imported certificate authority (CA) certificate within Certificate Manager (ACM) to use for outbound SSL/TLS inspection. The following limitations apply: * You can use CA certificates that you imported into ACM, but you can't generate CA certificates with ACM. * You can't use certificates issued by Private Certificate Authority. For more information about configuring certificates for outbound inspection, see Using SSL/TLS certificates with TLS inspection configurations in the *Network Firewall Developer Guide*. For information about working with certificates in ACM, see Importing certificates in the *Certificate Manager User Guide*. * **CheckCertificateRevocationStatus** *(dict) --* When enabled, Network Firewall checks if the server certificate presented by the server in the SSL/TLS connection has a revoked or unkown status. If the certificate has an unknown or revoked status, you must specify the actions that Network Firewall takes on outbound traffic. To check the certificate revocation status, you must also specify a "CertificateAuthorityArn" in ServerCertificateConfiguration. * **RevokedStatusAction** *(string) --* Configures how Network Firewall processes traffic when it determines that the certificate presented by the server in the SSL/TLS connection has a revoked status. * **PASS** - Allow the connection to continue, and pass subsequent packets to the stateful engine for inspection. * **DROP** - Network Firewall closes the connection and drops subsequent packets for that connection. * **REJECT** - Network Firewall sends a TCP reject packet back to your client. The service closes the connection and drops subsequent packets for that connection. "REJECT" is available only for TCP traffic. * **UnknownStatusAction** *(string) --* Configures how Network Firewall processes traffic when it determines that the certificate presented by the server in the SSL/TLS connection has an unknown status, or a status that cannot be determined for any other reason, including when the service is unable to connect to the OCSP and CRL endpoints for the certificate. * **PASS** - Allow the connection to continue, and pass subsequent packets to the stateful engine for inspection. * **DROP** - Network Firewall closes the connection and drops subsequent packets for that connection. * **REJECT** - Network Firewall sends a TCP reject packet back to your client. The service closes the connection and drops subsequent packets for that connection. "REJECT" is available only for TCP traffic. * **Description** (*string*) -- A description of the TLS inspection configuration. * **Tags** (*list*) -- The key:value pairs to associate with the resource. * *(dict) --* A key:value pair associated with an Amazon Web Services resource. The key:value pair can be anything you define. Typically, the tag key represents a category (such as "environment") and the tag value represents a specific value within that category (such as "test," "development," or "production"). You can add up to 50 tags to each Amazon Web Services resource. * **Key** *(string) --* **[REQUIRED]** The part of the key:value pair that defines a tag. You can use a tag key to describe a category of information, such as "customer." Tag keys are case-sensitive. * **Value** *(string) --* **[REQUIRED]** The part of the key:value pair that defines a tag. You can use a tag value to describe a specific value within a category, such as "companyA" or "companyB." Tag values are case-sensitive. * **EncryptionConfiguration** (*dict*) -- A complex type that contains optional Amazon Web Services Key Management Service (KMS) encryption settings for your Network Firewall resources. Your data is encrypted by default with an Amazon Web Services owned key that Amazon Web Services owns and manages for you. You can use either the Amazon Web Services owned key, or provide your own customer managed key. To learn more about KMS encryption of your Network Firewall resources, see Encryption at rest with Amazon Web Services Key Managment Service in the *Network Firewall Developer Guide*. * **KeyId** *(string) --* The ID of the Amazon Web Services Key Management Service (KMS) customer managed key. You can use any of the key identifiers that KMS supports, unless you're using a key that's managed by another account. If you're using a key managed by another account, then specify the key ARN. For more information, see Key ID in the *Amazon Web Services KMS Developer Guide*. * **Type** *(string) --* **[REQUIRED]** The type of Amazon Web Services KMS key to use for encryption of your Network Firewall resources. Return type: dict Returns: **Response Syntax** { 'UpdateToken': 'string', 'TLSInspectionConfigurationResponse': { 'TLSInspectionConfigurationArn': 'string', 'TLSInspectionConfigurationName': 'string', 'TLSInspectionConfigurationId': 'string', 'TLSInspectionConfigurationStatus': 'ACTIVE'|'DELETING'|'ERROR', 'Description': 'string', 'Tags': [ { 'Key': 'string', 'Value': 'string' }, ], 'LastModifiedTime': datetime(2015, 1, 1), 'NumberOfAssociations': 123, 'EncryptionConfiguration': { 'KeyId': 'string', 'Type': 'CUSTOMER_KMS'|'AWS_OWNED_KMS_KEY' }, 'Certificates': [ { 'CertificateArn': 'string', 'CertificateSerial': 'string', 'Status': 'string', 'StatusMessage': 'string' }, ], 'CertificateAuthority': { 'CertificateArn': 'string', 'CertificateSerial': 'string', 'Status': 'string', 'StatusMessage': 'string' } } } **Response Structure** * *(dict) --* * **UpdateToken** *(string) --* A token used for optimistic locking. Network Firewall returns a token to your requests that access the TLS inspection configuration. The token marks the state of the TLS inspection configuration resource at the time of the request. To make changes to the TLS inspection configuration, you provide the token in your request. Network Firewall uses the token to ensure that the TLS inspection configuration hasn't changed since you last retrieved it. If it has changed, the operation fails with an "InvalidTokenException". If this happens, retrieve the TLS inspection configuration again to get a current copy of it with a current token. Reapply your changes as needed, then try the operation again using the new token. * **TLSInspectionConfigurationResponse** *(dict) --* The high-level properties of a TLS inspection configuration. This, along with the TLSInspectionConfiguration, define the TLS inspection configuration. You can retrieve all objects for a TLS inspection configuration by calling DescribeTLSInspectionConfiguration. * **TLSInspectionConfigurationArn** *(string) --* The Amazon Resource Name (ARN) of the TLS inspection configuration. * **TLSInspectionConfigurationName** *(string) --* The descriptive name of the TLS inspection configuration. You can't change the name of a TLS inspection configuration after you create it. * **TLSInspectionConfigurationId** *(string) --* A unique identifier for the TLS inspection configuration. This ID is returned in the responses to create and list commands. You provide it to operations such as update and delete. * **TLSInspectionConfigurationStatus** *(string) --* Detailed information about the current status of a TLSInspectionConfiguration. You can retrieve this for a TLS inspection configuration by calling DescribeTLSInspectionConfiguration and providing the TLS inspection configuration name and ARN. * **Description** *(string) --* A description of the TLS inspection configuration. * **Tags** *(list) --* The key:value pairs to associate with the resource. * *(dict) --* A key:value pair associated with an Amazon Web Services resource. The key:value pair can be anything you define. Typically, the tag key represents a category (such as "environment") and the tag value represents a specific value within that category (such as "test," "development," or "production"). You can add up to 50 tags to each Amazon Web Services resource. * **Key** *(string) --* The part of the key:value pair that defines a tag. You can use a tag key to describe a category of information, such as "customer." Tag keys are case- sensitive. * **Value** *(string) --* The part of the key:value pair that defines a tag. You can use a tag value to describe a specific value within a category, such as "companyA" or "companyB." Tag values are case-sensitive. * **LastModifiedTime** *(datetime) --* The last time that the TLS inspection configuration was changed. * **NumberOfAssociations** *(integer) --* The number of firewall policies that use this TLS inspection configuration. * **EncryptionConfiguration** *(dict) --* A complex type that contains the Amazon Web Services KMS encryption configuration settings for your TLS inspection configuration. * **KeyId** *(string) --* The ID of the Amazon Web Services Key Management Service (KMS) customer managed key. You can use any of the key identifiers that KMS supports, unless you're using a key that's managed by another account. If you're using a key managed by another account, then specify the key ARN. For more information, see Key ID in the *Amazon Web Services KMS Developer Guide*. * **Type** *(string) --* The type of Amazon Web Services KMS key to use for encryption of your Network Firewall resources. * **Certificates** *(list) --* A list of the certificates associated with the TLS inspection configuration. * *(dict) --* Contains metadata about an Certificate Manager certificate. * **CertificateArn** *(string) --* The Amazon Resource Name (ARN) of the certificate. * **CertificateSerial** *(string) --* The serial number of the certificate. * **Status** *(string) --* The status of the certificate. * **StatusMessage** *(string) --* Contains details about the certificate status, including information about certificate errors. * **CertificateAuthority** *(dict) --* Contains metadata about an Certificate Manager certificate. * **CertificateArn** *(string) --* The Amazon Resource Name (ARN) of the certificate. * **CertificateSerial** *(string) --* The serial number of the certificate. * **Status** *(string) --* The status of the certificate. * **StatusMessage** *(string) --* Contains details about the certificate status, including information about certificate errors. **Exceptions** * "NetworkFirewall.Client.exceptions.InvalidRequestException" * "NetworkFirewall.Client.exceptions.ThrottlingException" * "NetworkFirewall.Client.exceptions.InternalServerError" * "NetworkFirewall.Client.exceptions.LimitExceededException" * "NetworkFirewall.Client.exceptions.InsufficientCapacityException" NetworkFirewall / Client / describe_rule_group_metadata describe_rule_group_metadata **************************** NetworkFirewall.Client.describe_rule_group_metadata(**kwargs) High-level information about a rule group, returned by operations like create and describe. You can use the information provided in the metadata to retrieve and manage a rule group. You can retrieve all objects for a rule group by calling DescribeRuleGroup. See also: AWS API Documentation **Request Syntax** response = client.describe_rule_group_metadata( RuleGroupName='string', RuleGroupArn='string', Type='STATELESS'|'STATEFUL' ) Parameters: * **RuleGroupName** (*string*) -- The descriptive name of the rule group. You can't change the name of a rule group after you create it. You must specify the ARN or the name, and you can specify both. * **RuleGroupArn** (*string*) -- The descriptive name of the rule group. You can't change the name of a rule group after you create it. You must specify the ARN or the name, and you can specify both. * **Type** (*string*) -- Indicates whether the rule group is stateless or stateful. If the rule group is stateless, it contains stateless rules. If it is stateful, it contains stateful rules. Note: This setting is required for requests that do not include the "RuleGroupARN". Return type: dict Returns: **Response Syntax** { 'RuleGroupArn': 'string', 'RuleGroupName': 'string', 'Description': 'string', 'Type': 'STATELESS'|'STATEFUL', 'Capacity': 123, 'StatefulRuleOptions': { 'RuleOrder': 'DEFAULT_ACTION_ORDER'|'STRICT_ORDER' }, 'LastModifiedTime': datetime(2015, 1, 1) } **Response Structure** * *(dict) --* * **RuleGroupArn** *(string) --* The descriptive name of the rule group. You can't change the name of a rule group after you create it. You must specify the ARN or the name, and you can specify both. * **RuleGroupName** *(string) --* The descriptive name of the rule group. You can't change the name of a rule group after you create it. You must specify the ARN or the name, and you can specify both. * **Description** *(string) --* Returns the metadata objects for the specified rule group. * **Type** *(string) --* Indicates whether the rule group is stateless or stateful. If the rule group is stateless, it contains stateless rules. If it is stateful, it contains stateful rules. Note: This setting is required for requests that do not include the "RuleGroupARN". * **Capacity** *(integer) --* The maximum operating resources that this rule group can use. Rule group capacity is fixed at creation. When you update a rule group, you are limited to this capacity. When you reference a rule group from a firewall policy, Network Firewall reserves this capacity for the rule group. You can retrieve the capacity that would be required for a rule group before you create the rule group by calling CreateRuleGroup with "DryRun" set to "TRUE". * **StatefulRuleOptions** *(dict) --* Additional options governing how Network Firewall handles the rule group. You can only use these for stateful rule groups. * **RuleOrder** *(string) --* Indicates how to manage the order of the rule evaluation for the rule group. "DEFAULT_ACTION_ORDER" is the default behavior. Stateful rules are provided to the rule engine as Suricata compatible strings, and Suricata evaluates them based on certain settings. For more information, see Evaluation order for stateful rules in the *Network Firewall Developer Guide*. * **LastModifiedTime** *(datetime) --* A timestamp indicating when the rule group was last modified. **Exceptions** * "NetworkFirewall.Client.exceptions.InvalidRequestException" * "NetworkFirewall.Client.exceptions.ResourceNotFoundException" * "NetworkFirewall.Client.exceptions.ThrottlingException" * "NetworkFirewall.Client.exceptions.InternalServerError" NetworkFirewall / Client / describe_rule_group_summary describe_rule_group_summary *************************** NetworkFirewall.Client.describe_rule_group_summary(**kwargs) Returns detailed information for a stateful rule group. For active threat defense Amazon Web Services managed rule groups, this operation provides insight into the protections enabled by the rule group, based on Suricata rule metadata fields. Summaries are available for rule groups you manage and for active threat defense Amazon Web Services managed rule groups. To modify how threat information appears in summaries, use the "SummaryConfiguration" parameter in UpdateRuleGroup. See also: AWS API Documentation **Request Syntax** response = client.describe_rule_group_summary( RuleGroupName='string', RuleGroupArn='string', Type='STATELESS'|'STATEFUL' ) Parameters: * **RuleGroupName** (*string*) -- The descriptive name of the rule group. You can't change the name of a rule group after you create it. You must specify the ARN or the name, and you can specify both. * **RuleGroupArn** (*string*) -- Required. The Amazon Resource Name (ARN) of the rule group. You must specify the ARN or the name, and you can specify both. * **Type** (*string*) -- The type of rule group you want a summary for. This is a required field. Valid value: "STATEFUL" Note that "STATELESS" exists but is not currently supported. If you provide "STATELESS", an exception is returned. Return type: dict Returns: **Response Syntax** { 'RuleGroupName': 'string', 'Description': 'string', 'Summary': { 'RuleSummaries': [ { 'SID': 'string', 'Msg': 'string', 'Metadata': 'string' }, ] } } **Response Structure** * *(dict) --* * **RuleGroupName** *(string) --* The descriptive name of the rule group. You can't change the name of a rule group after you create it. * **Description** *(string) --* A description of the rule group. * **Summary** *(dict) --* A complex type that contains rule information based on the rule group's configured summary settings. The content varies depending on the fields that you specified to extract in your SummaryConfiguration. When you haven't configured any summary settings, this returns an empty array. The response might include: * Rule identifiers * Rule descriptions * Any metadata fields that you specified in your SummaryConfiguration * **RuleSummaries** *(list) --* An array of RuleSummary objects containing individual rule details that had been configured by the rulegroup's SummaryConfiguration. * *(dict) --* A complex type containing details about a Suricata rule. Contains: * "SID" * "Msg" * "Metadata" Summaries are available for rule groups you manage and for active threat defense Amazon Web Services managed rule groups. * **SID** *(string) --* The unique identifier (Signature ID) of the Suricata rule. * **Msg** *(string) --* The contents taken from the rule's msg field. * **Metadata** *(string) --* The contents of the rule's metadata. **Exceptions** * "NetworkFirewall.Client.exceptions.InvalidRequestException" * "NetworkFirewall.Client.exceptions.ResourceNotFoundException" * "NetworkFirewall.Client.exceptions.ThrottlingException" * "NetworkFirewall.Client.exceptions.InternalServerError" NetworkFirewall / Client / list_tags_for_resource list_tags_for_resource ********************** NetworkFirewall.Client.list_tags_for_resource(**kwargs) Retrieves the tags associated with the specified resource. Tags are key:value pairs that you can use to categorize and manage your resources, for purposes like billing. For example, you might set the tag key to "customer" and the value to the customer name or ID. You can specify one or more tags to add to each Amazon Web Services resource, up to 50 tags for a resource. You can tag the Amazon Web Services resources that you manage through Network Firewall: firewalls, firewall policies, and rule groups. See also: AWS API Documentation **Request Syntax** response = client.list_tags_for_resource( NextToken='string', MaxResults=123, ResourceArn='string' ) Parameters: * **NextToken** (*string*) -- When you request a list of objects with a "MaxResults" setting, if the number of objects that are still available for retrieval exceeds the maximum you requested, Network Firewall returns a "NextToken" value in the response. To retrieve the next batch of objects, use the token returned from the prior request in your next request. * **MaxResults** (*integer*) -- The maximum number of objects that you want Network Firewall to return for this request. If more objects are available, in the response, Network Firewall provides a "NextToken" value that you can use in a subsequent call to get the next batch of objects. * **ResourceArn** (*string*) -- **[REQUIRED]** The Amazon Resource Name (ARN) of the resource. Return type: dict Returns: **Response Syntax** { 'NextToken': 'string', 'Tags': [ { 'Key': 'string', 'Value': 'string' }, ] } **Response Structure** * *(dict) --* * **NextToken** *(string) --* When you request a list of objects with a "MaxResults" setting, if the number of objects that are still available for retrieval exceeds the maximum you requested, Network Firewall returns a "NextToken" value in the response. To retrieve the next batch of objects, use the token returned from the prior request in your next request. * **Tags** *(list) --* The tags that are associated with the resource. * *(dict) --* A key:value pair associated with an Amazon Web Services resource. The key:value pair can be anything you define. Typically, the tag key represents a category (such as "environment") and the tag value represents a specific value within that category (such as "test," "development," or "production"). You can add up to 50 tags to each Amazon Web Services resource. * **Key** *(string) --* The part of the key:value pair that defines a tag. You can use a tag key to describe a category of information, such as "customer." Tag keys are case-sensitive. * **Value** *(string) --* The part of the key:value pair that defines a tag. You can use a tag value to describe a specific value within a category, such as "companyA" or "companyB." Tag values are case-sensitive. **Exceptions** * "NetworkFirewall.Client.exceptions.ThrottlingException" * "NetworkFirewall.Client.exceptions.InternalServerError" * "NetworkFirewall.Client.exceptions.ResourceNotFoundException" * "NetworkFirewall.Client.exceptions.InvalidRequestException" NetworkFirewall / Client / list_rule_groups list_rule_groups **************** NetworkFirewall.Client.list_rule_groups(**kwargs) Retrieves the metadata for the rule groups that you have defined. Depending on your setting for max results and the number of rule groups, a single call might not return the full list. See also: AWS API Documentation **Request Syntax** response = client.list_rule_groups( NextToken='string', MaxResults=123, Scope='MANAGED'|'ACCOUNT', ManagedType='AWS_MANAGED_THREAT_SIGNATURES'|'AWS_MANAGED_DOMAIN_LISTS'|'ACTIVE_THREAT_DEFENSE', Type='STATELESS'|'STATEFUL' ) Parameters: * **NextToken** (*string*) -- When you request a list of objects with a "MaxResults" setting, if the number of objects that are still available for retrieval exceeds the maximum you requested, Network Firewall returns a "NextToken" value in the response. To retrieve the next batch of objects, use the token returned from the prior request in your next request. * **MaxResults** (*integer*) -- The maximum number of objects that you want Network Firewall to return for this request. If more objects are available, in the response, Network Firewall provides a "NextToken" value that you can use in a subsequent call to get the next batch of objects. * **Scope** (*string*) -- The scope of the request. The default setting of "ACCOUNT" or a setting of "NULL" returns all of the rule groups in your account. A setting of "MANAGED" returns all available managed rule groups. * **ManagedType** (*string*) -- Indicates the general category of the Amazon Web Services managed rule group. * **Type** (*string*) -- Indicates whether the rule group is stateless or stateful. If the rule group is stateless, it contains stateless rules. If it is stateful, it contains stateful rules. Return type: dict Returns: **Response Syntax** { 'NextToken': 'string', 'RuleGroups': [ { 'Name': 'string', 'Arn': 'string' }, ] } **Response Structure** * *(dict) --* * **NextToken** *(string) --* When you request a list of objects with a "MaxResults" setting, if the number of objects that are still available for retrieval exceeds the maximum you requested, Network Firewall returns a "NextToken" value in the response. To retrieve the next batch of objects, use the token returned from the prior request in your next request. * **RuleGroups** *(list) --* The rule group metadata objects that you've defined. Depending on your setting for max results and the number of rule groups, this might not be the full list. * *(dict) --* High-level information about a rule group, returned by ListRuleGroups. You can use the information provided in the metadata to retrieve and manage a rule group. * **Name** *(string) --* The descriptive name of the rule group. You can't change the name of a rule group after you create it. * **Arn** *(string) --* The Amazon Resource Name (ARN) of the rule group. **Exceptions** * "NetworkFirewall.Client.exceptions.InvalidRequestException" * "NetworkFirewall.Client.exceptions.ThrottlingException" * "NetworkFirewall.Client.exceptions.InternalServerError" NetworkFirewall / Client / describe_flow_operation describe_flow_operation *********************** NetworkFirewall.Client.describe_flow_operation(**kwargs) Returns key information about a specific flow operation. See also: AWS API Documentation **Request Syntax** response = client.describe_flow_operation( FirewallArn='string', AvailabilityZone='string', VpcEndpointAssociationArn='string', VpcEndpointId='string', FlowOperationId='string' ) Parameters: * **FirewallArn** (*string*) -- **[REQUIRED]** The Amazon Resource Name (ARN) of the firewall. * **AvailabilityZone** (*string*) -- The ID of the Availability Zone where the firewall is located. For example, "us-east-2a". Defines the scope a flow operation. You can use up to 20 filters to configure a single flow operation. * **VpcEndpointAssociationArn** (*string*) -- The Amazon Resource Name (ARN) of a VPC endpoint association. * **VpcEndpointId** (*string*) -- A unique identifier for the primary endpoint associated with a firewall. * **FlowOperationId** (*string*) -- **[REQUIRED]** A unique identifier for the flow operation. This ID is returned in the responses to start and list commands. You provide to describe commands. Return type: dict Returns: **Response Syntax** { 'FirewallArn': 'string', 'AvailabilityZone': 'string', 'VpcEndpointAssociationArn': 'string', 'VpcEndpointId': 'string', 'FlowOperationId': 'string', 'FlowOperationType': 'FLOW_FLUSH'|'FLOW_CAPTURE', 'FlowOperationStatus': 'COMPLETED'|'IN_PROGRESS'|'FAILED'|'COMPLETED_WITH_ERRORS', 'StatusMessage': 'string', 'FlowRequestTimestamp': datetime(2015, 1, 1), 'FlowOperation': { 'MinimumFlowAgeInSeconds': 123, 'FlowFilters': [ { 'SourceAddress': { 'AddressDefinition': 'string' }, 'DestinationAddress': { 'AddressDefinition': 'string' }, 'SourcePort': 'string', 'DestinationPort': 'string', 'Protocols': [ 'string', ] }, ] } } **Response Structure** * *(dict) --* * **FirewallArn** *(string) --* The Amazon Resource Name (ARN) of the firewall. * **AvailabilityZone** *(string) --* The ID of the Availability Zone where the firewall is located. For example, "us-east-2a". Defines the scope a flow operation. You can use up to 20 filters to configure a single flow operation. * **VpcEndpointAssociationArn** *(string) --* The Amazon Resource Name (ARN) of a VPC endpoint association. * **VpcEndpointId** *(string) --* A unique identifier for the primary endpoint associated with a firewall. * **FlowOperationId** *(string) --* A unique identifier for the flow operation. This ID is returned in the responses to start and list commands. You provide to describe commands. * **FlowOperationType** *(string) --* Defines the type of "FlowOperation". * **FlowOperationStatus** *(string) --* Returns the status of the flow operation. This string is returned in the responses to start, list, and describe commands. If the status is "COMPLETED_WITH_ERRORS", results may be returned with any number of "Flows" missing from the response. If the status is "FAILED", "Flows" returned will be empty. * **StatusMessage** *(string) --* If the asynchronous operation fails, Network Firewall populates this with the reason for the error or failure. Options include "Flow operation error" and "Flow timeout". * **FlowRequestTimestamp** *(datetime) --* A timestamp indicating when the Suricata engine identified flows impacted by an operation. * **FlowOperation** *(dict) --* Returns key information about a flow operation, such as related statuses, unique identifiers, and all filters defined in the operation. * **MinimumFlowAgeInSeconds** *(integer) --* The reqested "FlowOperation" ignores flows with an age (in seconds) lower than "MinimumFlowAgeInSeconds". You provide this for start commands. * **FlowFilters** *(list) --* Defines the scope a flow operation. You can use up to 20 filters to configure a single flow operation. * *(dict) --* Defines the scope a flow operation. You can use up to 20 filters to configure a single flow operation. * **SourceAddress** *(dict) --* A single IP address specification. This is used in the MatchAttributes source and destination specifications. * **AddressDefinition** *(string) --* Specify an IP address or a block of IP addresses in Classless Inter-Domain Routing (CIDR) notation. Network Firewall supports all address ranges for IPv4 and IPv6. Examples: * To configure Network Firewall to inspect for the IP address 192.0.2.44, specify "192.0.2.44/32". * To configure Network Firewall to inspect for IP addresses from 192.0.2.0 to 192.0.2.255, specify "192.0.2.0/24". * To configure Network Firewall to inspect for the IP address 1111:0000:0000:0000:0000:0000:0000:0111, specify "1111:0000:0000:0000:0000:0000:0000:0111/128". * To configure Network Firewall to inspect for IP addresses from 1111:0000:0000:0000:0000:0000:0000:0000 to 1111:0000:0000:0000:ffff:ffff:ffff:ffff, specify "1111:0000:0000:0000:0000:0000:0000:0000/64". For more information about CIDR notation, see the Wikipedia entry Classless Inter-Domain Routing. * **DestinationAddress** *(dict) --* A single IP address specification. This is used in the MatchAttributes source and destination specifications. * **AddressDefinition** *(string) --* Specify an IP address or a block of IP addresses in Classless Inter-Domain Routing (CIDR) notation. Network Firewall supports all address ranges for IPv4 and IPv6. Examples: * To configure Network Firewall to inspect for the IP address 192.0.2.44, specify "192.0.2.44/32". * To configure Network Firewall to inspect for IP addresses from 192.0.2.0 to 192.0.2.255, specify "192.0.2.0/24". * To configure Network Firewall to inspect for the IP address 1111:0000:0000:0000:0000:0000:0000:0111, specify "1111:0000:0000:0000:0000:0000:0000:0111/128". * To configure Network Firewall to inspect for IP addresses from 1111:0000:0000:0000:0000:0000:0000:0000 to 1111:0000:0000:0000:ffff:ffff:ffff:ffff, specify "1111:0000:0000:0000:0000:0000:0000:0000/64". For more information about CIDR notation, see the Wikipedia entry Classless Inter-Domain Routing. * **SourcePort** *(string) --* The source port to inspect for. You can specify an individual port, for example "1994" and you can specify a port range, for example "1990:1994". To match with any port, specify "ANY". * **DestinationPort** *(string) --* The destination port to inspect for. You can specify an individual port, for example "1994" and you can specify a port range, for example "1990:1994". To match with any port, specify "ANY". * **Protocols** *(list) --* The protocols to inspect for, specified using the assigned internet protocol number (IANA) for each protocol. If not specified, this matches with any protocol. * *(string) --* **Exceptions** * "NetworkFirewall.Client.exceptions.InvalidRequestException" * "NetworkFirewall.Client.exceptions.InternalServerError" * "NetworkFirewall.Client.exceptions.ResourceNotFoundException" * "NetworkFirewall.Client.exceptions.ThrottlingException" NetworkFirewall / Client / delete_vpc_endpoint_association delete_vpc_endpoint_association ******************************* NetworkFirewall.Client.delete_vpc_endpoint_association(**kwargs) Deletes the specified VpcEndpointAssociation. You can check whether an endpoint association is in use by reviewing the route tables for the Availability Zones where you have the endpoint subnet mapping. You can retrieve the subnet mapping by calling DescribeVpcEndpointAssociation. You define and update the route tables through Amazon VPC. As needed, update the route tables for the Availability Zone to remove the firewall endpoint for the association. When the route tables no longer use the firewall endpoint, you can remove the endpoint association safely. See also: AWS API Documentation **Request Syntax** response = client.delete_vpc_endpoint_association( VpcEndpointAssociationArn='string' ) Parameters: **VpcEndpointAssociationArn** (*string*) -- **[REQUIRED]** The Amazon Resource Name (ARN) of a VPC endpoint association. Return type: dict Returns: **Response Syntax** { 'VpcEndpointAssociation': { 'VpcEndpointAssociationId': 'string', 'VpcEndpointAssociationArn': 'string', 'FirewallArn': 'string', 'VpcId': 'string', 'SubnetMapping': { 'SubnetId': 'string', 'IPAddressType': 'DUALSTACK'|'IPV4'|'IPV6' }, 'Description': 'string', 'Tags': [ { 'Key': 'string', 'Value': 'string' }, ] }, 'VpcEndpointAssociationStatus': { 'Status': 'PROVISIONING'|'DELETING'|'READY', 'AssociationSyncState': { 'string': { 'Attachment': { 'SubnetId': 'string', 'EndpointId': 'string', 'Status': 'CREATING'|'DELETING'|'FAILED'|'ERROR'|'SCALING'|'READY', 'StatusMessage': 'string' } } } } } **Response Structure** * *(dict) --* * **VpcEndpointAssociation** *(dict) --* The configuration settings for the VPC endpoint association. These settings include the firewall and the VPC and subnet to use for the firewall endpoint. * **VpcEndpointAssociationId** *(string) --* The unique identifier of the VPC endpoint association. * **VpcEndpointAssociationArn** *(string) --* The Amazon Resource Name (ARN) of a VPC endpoint association. * **FirewallArn** *(string) --* The Amazon Resource Name (ARN) of the firewall. * **VpcId** *(string) --* The unique identifier of the VPC for the endpoint association. * **SubnetMapping** *(dict) --* The ID for a subnet that's used in an association with a firewall. This is used in CreateFirewall, AssociateSubnets, and CreateVpcEndpointAssociation. Network Firewall creates an instance of the associated firewall in each subnet that you specify, to filter traffic in the subnet's Availability Zone. * **SubnetId** *(string) --* The unique identifier for the subnet. * **IPAddressType** *(string) --* The subnet's IP address type. You can't change the IP address type after you create the subnet. * **Description** *(string) --* A description of the VPC endpoint association. * **Tags** *(list) --* The key:value pairs to associate with the resource. * *(dict) --* A key:value pair associated with an Amazon Web Services resource. The key:value pair can be anything you define. Typically, the tag key represents a category (such as "environment") and the tag value represents a specific value within that category (such as "test," "development," or "production"). You can add up to 50 tags to each Amazon Web Services resource. * **Key** *(string) --* The part of the key:value pair that defines a tag. You can use a tag key to describe a category of information, such as "customer." Tag keys are case- sensitive. * **Value** *(string) --* The part of the key:value pair that defines a tag. You can use a tag value to describe a specific value within a category, such as "companyA" or "companyB." Tag values are case-sensitive. * **VpcEndpointAssociationStatus** *(dict) --* Detailed information about the current status of a VpcEndpointAssociation. You can retrieve this by calling DescribeVpcEndpointAssociation and providing the VPC endpoint association ARN. * **Status** *(string) --* The readiness of the configured firewall endpoint to handle network traffic. * **AssociationSyncState** *(dict) --* The list of the Availability Zone sync states for all subnets that are defined by the firewall. * *(string) --* * *(dict) --* The status of the firewall endpoint defined by a "VpcEndpointAssociation". * **Attachment** *(dict) --* The definition and status of the firewall endpoint for a single subnet. In each configured subnet, Network Firewall instantiates a firewall endpoint to handle network traffic. This data type is used for any firewall endpoint type: * For "Firewall.SubnetMappings", this "Attachment" is part of the "FirewallStatus" sync states information. You define firewall subnets using "CreateFirewall" and "AssociateSubnets". * For "VpcEndpointAssociation", this "Attachment" is part of the "VpcEndpointAssociationStatus" sync states information. You define these subnets using "CreateVpcEndpointAssociation". * **SubnetId** *(string) --* The unique identifier of the subnet that you've specified to be used for a firewall endpoint. * **EndpointId** *(string) --* The identifier of the firewall endpoint that Network Firewall has instantiated in the subnet. You use this to identify the firewall endpoint in the VPC route tables, when you redirect the VPC traffic through the endpoint. * **Status** *(string) --* The current status of the firewall endpoint instantiation in the subnet. When this value is "READY", the endpoint is available to handle network traffic. Otherwise, this value reflects its state, for example "CREATING" or "DELETING". * **StatusMessage** *(string) --* If Network Firewall fails to create or delete the firewall endpoint in the subnet, it populates this with the reason for the error or failure and how to resolve it. A "FAILED" status indicates a non- recoverable state, and a "ERROR" status indicates an issue that you can fix. Depending on the error, it can take as many as 15 minutes to populate this field. For more information about the causes for failiure or errors and solutions available for this field, see Troubleshooting firewall endpoint failures in the *Network Firewall Developer Guide*. **Exceptions** * "NetworkFirewall.Client.exceptions.InvalidRequestException" * "NetworkFirewall.Client.exceptions.InternalServerError" * "NetworkFirewall.Client.exceptions.ResourceNotFoundException" * "NetworkFirewall.Client.exceptions.ThrottlingException" * "NetworkFirewall.Client.exceptions.InvalidOperationException" NetworkFirewall / Client / untag_resource untag_resource ************** NetworkFirewall.Client.untag_resource(**kwargs) Removes the tags with the specified keys from the specified resource. Tags are key:value pairs that you can use to categorize and manage your resources, for purposes like billing. For example, you might set the tag key to "customer" and the value to the customer name or ID. You can specify one or more tags to add to each Amazon Web Services resource, up to 50 tags for a resource. You can manage tags for the Amazon Web Services resources that you manage through Network Firewall: firewalls, firewall policies, and rule groups. See also: AWS API Documentation **Request Syntax** response = client.untag_resource( ResourceArn='string', TagKeys=[ 'string', ] ) Parameters: * **ResourceArn** (*string*) -- **[REQUIRED]** The Amazon Resource Name (ARN) of the resource. * **TagKeys** (*list*) -- **[REQUIRED]** * *(string) --* Return type: dict Returns: **Response Syntax** {} **Response Structure** * *(dict) --* **Exceptions** * "NetworkFirewall.Client.exceptions.ThrottlingException" * "NetworkFirewall.Client.exceptions.InternalServerError" * "NetworkFirewall.Client.exceptions.ResourceNotFoundException" * "NetworkFirewall.Client.exceptions.InvalidRequestException" NetworkFirewall / Client / describe_rule_group describe_rule_group ******************* NetworkFirewall.Client.describe_rule_group(**kwargs) Returns the data objects for the specified rule group. See also: AWS API Documentation **Request Syntax** response = client.describe_rule_group( RuleGroupName='string', RuleGroupArn='string', Type='STATELESS'|'STATEFUL', AnalyzeRuleGroup=True|False ) Parameters: * **RuleGroupName** (*string*) -- The descriptive name of the rule group. You can't change the name of a rule group after you create it. You must specify the ARN or the name, and you can specify both. * **RuleGroupArn** (*string*) -- The Amazon Resource Name (ARN) of the rule group. You must specify the ARN or the name, and you can specify both. * **Type** (*string*) -- Indicates whether the rule group is stateless or stateful. If the rule group is stateless, it contains stateless rules. If it is stateful, it contains stateful rules. Note: This setting is required for requests that do not include the "RuleGroupARN". * **AnalyzeRuleGroup** (*boolean*) -- Indicates whether you want Network Firewall to analyze the stateless rules in the rule group for rule behavior such as asymmetric routing. If set to "TRUE", Network Firewall runs the analysis. Return type: dict Returns: **Response Syntax** { 'UpdateToken': 'string', 'RuleGroup': { 'RuleVariables': { 'IPSets': { 'string': { 'Definition': [ 'string', ] } }, 'PortSets': { 'string': { 'Definition': [ 'string', ] } } }, 'ReferenceSets': { 'IPSetReferences': { 'string': { 'ReferenceArn': 'string' } } }, 'RulesSource': { 'RulesString': 'string', 'RulesSourceList': { 'Targets': [ 'string', ], 'TargetTypes': [ 'TLS_SNI'|'HTTP_HOST', ], 'GeneratedRulesType': 'ALLOWLIST'|'DENYLIST' }, 'StatefulRules': [ { 'Action': 'PASS'|'DROP'|'ALERT'|'REJECT', 'Header': { 'Protocol': 'IP'|'TCP'|'UDP'|'ICMP'|'HTTP'|'FTP'|'TLS'|'SMB'|'DNS'|'DCERPC'|'SSH'|'SMTP'|'IMAP'|'MSN'|'KRB5'|'IKEV2'|'TFTP'|'NTP'|'DHCP'|'HTTP2'|'QUIC', 'Source': 'string', 'SourcePort': 'string', 'Direction': 'FORWARD'|'ANY', 'Destination': 'string', 'DestinationPort': 'string' }, 'RuleOptions': [ { 'Keyword': 'string', 'Settings': [ 'string', ] }, ] }, ], 'StatelessRulesAndCustomActions': { 'StatelessRules': [ { 'RuleDefinition': { 'MatchAttributes': { 'Sources': [ { 'AddressDefinition': 'string' }, ], 'Destinations': [ { 'AddressDefinition': 'string' }, ], 'SourcePorts': [ { 'FromPort': 123, 'ToPort': 123 }, ], 'DestinationPorts': [ { 'FromPort': 123, 'ToPort': 123 }, ], 'Protocols': [ 123, ], 'TCPFlags': [ { 'Flags': [ 'FIN'|'SYN'|'RST'|'PSH'|'ACK'|'URG'|'ECE'|'CWR', ], 'Masks': [ 'FIN'|'SYN'|'RST'|'PSH'|'ACK'|'URG'|'ECE'|'CWR', ] }, ] }, 'Actions': [ 'string', ] }, 'Priority': 123 }, ], 'CustomActions': [ { 'ActionName': 'string', 'ActionDefinition': { 'PublishMetricAction': { 'Dimensions': [ { 'Value': 'string' }, ] } } }, ] } }, 'StatefulRuleOptions': { 'RuleOrder': 'DEFAULT_ACTION_ORDER'|'STRICT_ORDER' } }, 'RuleGroupResponse': { 'RuleGroupArn': 'string', 'RuleGroupName': 'string', 'RuleGroupId': 'string', 'Description': 'string', 'Type': 'STATELESS'|'STATEFUL', 'Capacity': 123, 'RuleGroupStatus': 'ACTIVE'|'DELETING'|'ERROR', 'Tags': [ { 'Key': 'string', 'Value': 'string' }, ], 'ConsumedCapacity': 123, 'NumberOfAssociations': 123, 'EncryptionConfiguration': { 'KeyId': 'string', 'Type': 'CUSTOMER_KMS'|'AWS_OWNED_KMS_KEY' }, 'SourceMetadata': { 'SourceArn': 'string', 'SourceUpdateToken': 'string' }, 'SnsTopic': 'string', 'LastModifiedTime': datetime(2015, 1, 1), 'AnalysisResults': [ { 'IdentifiedRuleIds': [ 'string', ], 'IdentifiedType': 'STATELESS_RULE_FORWARDING_ASYMMETRICALLY'|'STATELESS_RULE_CONTAINS_TCP_FLAGS', 'AnalysisDetail': 'string' }, ], 'SummaryConfiguration': { 'RuleOptions': [ 'SID'|'MSG'|'METADATA', ] } } } **Response Structure** * *(dict) --* * **UpdateToken** *(string) --* A token used for optimistic locking. Network Firewall returns a token to your requests that access the rule group. The token marks the state of the rule group resource at the time of the request. To make changes to the rule group, you provide the token in your request. Network Firewall uses the token to ensure that the rule group hasn't changed since you last retrieved it. If it has changed, the operation fails with an "InvalidTokenException". If this happens, retrieve the rule group again to get a current copy of it with a current token. Reapply your changes as needed, then try the operation again using the new token. * **RuleGroup** *(dict) --* The object that defines the rules in a rule group. This, along with RuleGroupResponse, define the rule group. You can retrieve all objects for a rule group by calling DescribeRuleGroup. Network Firewall uses a rule group to inspect and control network traffic. You define stateless rule groups to inspect individual packets and you define stateful rule groups to inspect packets in the context of their traffic flow. To use a rule group, you include it by reference in an Network Firewall firewall policy, then you use the policy in a firewall. You can reference a rule group from more than one firewall policy, and you can use a firewall policy in more than one firewall. * **RuleVariables** *(dict) --* Settings that are available for use in the rules in the rule group. You can only use these for stateful rule groups. * **IPSets** *(dict) --* A list of IP addresses and address ranges, in CIDR notation. * *(string) --* * *(dict) --* A list of IP addresses and address ranges, in CIDR notation. This is part of a RuleVariables. * **Definition** *(list) --* The list of IP addresses and address ranges, in CIDR notation. * *(string) --* * **PortSets** *(dict) --* A list of port ranges. * *(string) --* * *(dict) --* A set of port ranges for use in the rules in a rule group. * **Definition** *(list) --* The set of port ranges. * *(string) --* * **ReferenceSets** *(dict) --* The list of a rule group's reference sets. * **IPSetReferences** *(dict) --* The list of IP set references. * *(string) --* * *(dict) --* Configures one or more IP set references for a Suricata-compatible rule group. This is used in CreateRuleGroup or UpdateRuleGroup. An IP set reference is a rule variable that references resources that you create and manage in another Amazon Web Services service, such as an Amazon VPC prefix list. Network Firewall IP set references enable you to dynamically update the contents of your rules. When you create, update, or delete the resource you are referencing in your rule, Network Firewall automatically updates the rule's content with the changes. For more information about IP set references in Network Firewall, see Using IP set references in the *Network Firewall Developer Guide*. Network Firewall currently supports Amazon VPC prefix lists and resource groups in IP set references. * **ReferenceArn** *(string) --* The Amazon Resource Name (ARN) of the resource that you are referencing in your rule group. * **RulesSource** *(dict) --* The stateful rules or stateless rules for the rule group. * **RulesString** *(string) --* Stateful inspection criteria, provided in Suricata compatible rules. Suricata is an open-source threat detection framework that includes a standard rule-based language for network traffic inspection. These rules contain the inspection criteria and the action to take for traffic that matches the criteria, so this type of rule group doesn't have a separate action setting. Note: You can't use the "priority" keyword if the "RuleOrder" option in StatefulRuleOptions is set to "STRICT_ORDER". * **RulesSourceList** *(dict) --* Stateful inspection criteria for a domain list rule group. * **Targets** *(list) --* The domains that you want to inspect for in your traffic flows. Valid domain specifications are the following: * Explicit names. For example, "abc.example.com" matches only the domain "abc.example.com". * Names that use a domain wildcard, which you indicate with an initial ' "."'. For example, ".example.com" matches "example.com" and matches all subdomains of "example.com", such as "abc.example.com" and "www.example.com". * *(string) --* * **TargetTypes** *(list) --* The protocols you want to inspect. Specify "TLS_SNI" for "HTTPS". Specify "HTTP_HOST" for "HTTP". You can specify either or both. * *(string) --* * **GeneratedRulesType** *(string) --* Whether you want to allow or deny access to the domains in your target list. * **StatefulRules** *(list) --* An array of individual stateful rules inspection criteria to be used together in a stateful rule group. Use this option to specify simple Suricata rules with protocol, source and destination, ports, direction, and rule options. For information about the Suricata "Rules" format, see Rules Format. * *(dict) --* A single Suricata rules specification, for use in a stateful rule group. Use this option to specify a simple Suricata rule with protocol, source and destination, ports, direction, and rule options. For information about the Suricata "Rules" format, see Rules Format. * **Action** *(string) --* Defines what Network Firewall should do with the packets in a traffic flow when the flow matches the stateful rule criteria. For all actions, Network Firewall performs the specified action and discontinues stateful inspection of the traffic flow. The actions for a stateful rule are defined as follows: * **PASS** - Permits the packets to go to the intended destination. * **DROP** - Blocks the packets from going to the intended destination and sends an alert log message, if alert logging is configured in the Firewall LoggingConfiguration. * **ALERT** - Sends an alert log message, if alert logging is configured in the Firewall LoggingConfiguration. You can use this action to test a rule that you intend to use to drop traffic. You can enable the rule with "ALERT" action, verify in the logs that the rule is filtering as you want, then change the action to "DROP". * **REJECT** - Drops traffic that matches the conditions of the stateful rule, and sends a TCP reset packet back to sender of the packet. A TCP reset packet is a packet with no payload and an RST bit contained in the TCP header flags. REJECT is available only for TCP traffic. This option doesn't support FTP or IMAP protocols. * **Header** *(dict) --* The stateful inspection criteria for this rule, used to inspect traffic flows. * **Protocol** *(string) --* The protocol to inspect for. To specify all, you can use "IP", because all traffic on Amazon Web Services and on the internet is IP. * **Source** *(string) --* The source IP address or address range to inspect for, in CIDR notation. To match with any address, specify "ANY". Specify an IP address or a block of IP addresses in Classless Inter-Domain Routing (CIDR) notation. Network Firewall supports all address ranges for IPv4 and IPv6. Examples: * To configure Network Firewall to inspect for the IP address 192.0.2.44, specify "192.0.2.44/32". * To configure Network Firewall to inspect for IP addresses from 192.0.2.0 to 192.0.2.255, specify "192.0.2.0/24". * To configure Network Firewall to inspect for the IP address 1111:0000:0000:0000:0000:0000:0000:0111, specify "1111:0000:0000:0000:0000:0000:0000:0111/128". * To configure Network Firewall to inspect for IP addresses from 1111:0000:0000:0000:0000:0000:0000:0000 to 1111:0000:0000:0000:ffff:ffff:ffff:ffff, specify "1111:0000:0000:0000:0000:0000:0000:0000/64". For more information about CIDR notation, see the Wikipedia entry Classless Inter-Domain Routing. * **SourcePort** *(string) --* The source port to inspect for. You can specify an individual port, for example "1994" and you can specify a port range, for example "1990:1994". To match with any port, specify "ANY". * **Direction** *(string) --* The direction of traffic flow to inspect. If set to "ANY", the inspection matches bidirectional traffic, both from the source to the destination and from the destination to the source. If set to "FORWARD", the inspection only matches traffic going from the source to the destination. * **Destination** *(string) --* The destination IP address or address range to inspect for, in CIDR notation. To match with any address, specify "ANY". Specify an IP address or a block of IP addresses in Classless Inter-Domain Routing (CIDR) notation. Network Firewall supports all address ranges for IPv4 and IPv6. Examples: * To configure Network Firewall to inspect for the IP address 192.0.2.44, specify "192.0.2.44/32". * To configure Network Firewall to inspect for IP addresses from 192.0.2.0 to 192.0.2.255, specify "192.0.2.0/24". * To configure Network Firewall to inspect for the IP address 1111:0000:0000:0000:0000:0000:0000:0111, specify "1111:0000:0000:0000:0000:0000:0000:0111/128". * To configure Network Firewall to inspect for IP addresses from 1111:0000:0000:0000:0000:0000:0000:0000 to 1111:0000:0000:0000:ffff:ffff:ffff:ffff, specify "1111:0000:0000:0000:0000:0000:0000:0000/64". For more information about CIDR notation, see the Wikipedia entry Classless Inter-Domain Routing. * **DestinationPort** *(string) --* The destination port to inspect for. You can specify an individual port, for example "1994" and you can specify a port range, for example "1990:1994". To match with any port, specify "ANY". * **RuleOptions** *(list) --* Additional options for the rule. These are the Suricata "RuleOptions" settings. * *(dict) --* Additional settings for a stateful rule. This is part of the StatefulRule configuration. * **Keyword** *(string) --* The keyword for the Suricata compatible rule option. You must include a "sid" (signature ID), and can optionally include other keywords. For information about Suricata compatible keywords, see Rule options in the Suricata documentation. * **Settings** *(list) --* The settings of the Suricata compatible rule option. Rule options have zero or more setting values, and the number of possible and required settings depends on the "Keyword". For more information about the settings for specific options, see Rule options. * *(string) --* * **StatelessRulesAndCustomActions** *(dict) --* Stateless inspection criteria to be used in a stateless rule group. * **StatelessRules** *(list) --* Defines the set of stateless rules for use in a stateless rule group. * *(dict) --* A single stateless rule. This is used in StatelessRulesAndCustomActions. * **RuleDefinition** *(dict) --* Defines the stateless 5-tuple packet inspection criteria and the action to take on a packet that matches the criteria. * **MatchAttributes** *(dict) --* Criteria for Network Firewall to use to inspect an individual packet in stateless rule inspection. Each match attributes set can include one or more items such as IP address, CIDR range, port number, protocol, and TCP flags. * **Sources** *(list) --* The source IP addresses and address ranges to inspect for, in CIDR notation. If not specified, this matches with any source address. * *(dict) --* A single IP address specification. This is used in the MatchAttributes source and destination specifications. * **AddressDefinition** *(string) --* Specify an IP address or a block of IP addresses in Classless Inter-Domain Routing (CIDR) notation. Network Firewall supports all address ranges for IPv4 and IPv6. Examples: * To configure Network Firewall to inspect for the IP address 192.0.2.44, specify "192.0.2.44/32". * To configure Network Firewall to inspect for IP addresses from 192.0.2.0 to 192.0.2.255, specify "192.0.2.0/24". * To configure Network Firewall to inspect for the IP address 1111:0000:0000:0000:0000:0000:0000:0111, specify "1111:0000:0000:0000:0000:0000: 0000:0111/128". * To configure Network Firewall to inspect for IP addresses from 1111:0000:0000:0000:0000:0000:0000:0000 to 1111:0000:0000:0000:ffff:ffff:ffff:ffff, specify "1111:0000:0000:0000:0000:0000: 0000:0000/64". For more information about CIDR notation, see the Wikipedia entry Classless Inter- Domain Routing. * **Destinations** *(list) --* The destination IP addresses and address ranges to inspect for, in CIDR notation. If not specified, this matches with any destination address. * *(dict) --* A single IP address specification. This is used in the MatchAttributes source and destination specifications. * **AddressDefinition** *(string) --* Specify an IP address or a block of IP addresses in Classless Inter-Domain Routing (CIDR) notation. Network Firewall supports all address ranges for IPv4 and IPv6. Examples: * To configure Network Firewall to inspect for the IP address 192.0.2.44, specify "192.0.2.44/32". * To configure Network Firewall to inspect for IP addresses from 192.0.2.0 to 192.0.2.255, specify "192.0.2.0/24". * To configure Network Firewall to inspect for the IP address 1111:0000:0000:0000:0000:0000:0000:0111, specify "1111:0000:0000:0000:0000:0000: 0000:0111/128". * To configure Network Firewall to inspect for IP addresses from 1111:0000:0000:0000:0000:0000:0000:0000 to 1111:0000:0000:0000:ffff:ffff:ffff:ffff, specify "1111:0000:0000:0000:0000:0000: 0000:0000/64". For more information about CIDR notation, see the Wikipedia entry Classless Inter- Domain Routing. * **SourcePorts** *(list) --* The source port to inspect for. You can specify an individual port, for example "1994" and you can specify a port range, for example "1990:1994". To match with any port, specify "ANY". If not specified, this matches with any source port. This setting is only used for protocols 6 (TCP) and 17 (UDP). * *(dict) --* A single port range specification. This is used for source and destination port ranges in the stateless rule MatchAttributes, "SourcePorts", and "DestinationPorts" settings. * **FromPort** *(integer) --* The lower limit of the port range. This must be less than or equal to the "ToPort" specification. * **ToPort** *(integer) --* The upper limit of the port range. This must be greater than or equal to the "FromPort" specification. * **DestinationPorts** *(list) --* The destination port to inspect for. You can specify an individual port, for example "1994" and you can specify a port range, for example "1990:1994". To match with any port, specify "ANY". This setting is only used for protocols 6 (TCP) and 17 (UDP). * *(dict) --* A single port range specification. This is used for source and destination port ranges in the stateless rule MatchAttributes, "SourcePorts", and "DestinationPorts" settings. * **FromPort** *(integer) --* The lower limit of the port range. This must be less than or equal to the "ToPort" specification. * **ToPort** *(integer) --* The upper limit of the port range. This must be greater than or equal to the "FromPort" specification. * **Protocols** *(list) --* The protocols to inspect for, specified using the assigned internet protocol number (IANA) for each protocol. If not specified, this matches with any protocol. * *(integer) --* * **TCPFlags** *(list) --* The TCP flags and masks to inspect for. If not specified, this matches with any settings. This setting is only used for protocol 6 (TCP). * *(dict) --* TCP flags and masks to inspect packets for, used in stateless rules MatchAttributes settings. * **Flags** *(list) --* Used in conjunction with the "Masks" setting to define the flags that must be set and flags that must not be set in order for the packet to match. This setting can only specify values that are also specified in the "Masks" setting. For the flags that are specified in the masks setting, the following must be true for the packet to match: * The ones that are set in this flags setting must be set in the packet. * The ones that are not set in this flags setting must also not be set in the packet. * *(string) --* * **Masks** *(list) --* The set of flags to consider in the inspection. To inspect all flags in the valid values list, leave this with no setting. * *(string) --* * **Actions** *(list) --* The actions to take on a packet that matches one of the stateless rule definition's match attributes. You must specify a standard action and you can add custom actions. Note: Network Firewall only forwards a packet for stateful rule inspection if you specify "aws:forward_to_sfe" for a rule that the packet matches, or if the packet doesn't match any stateless rule and you specify "aws:forward_to_sfe" for the "StatelessDefaultActions" setting for the FirewallPolicy. For every rule, you must specify exactly one of the following standard actions. * **aws:pass** - Discontinues all inspection of the packet and permits it to go to its intended destination. * **aws:drop** - Discontinues all inspection of the packet and blocks it from going to its intended destination. * **aws:forward_to_sfe** - Discontinues stateless inspection of the packet and forwards it to the stateful rule engine for inspection. Additionally, you can specify a custom action. To do this, you define a custom action by name and type, then provide the name you've assigned to the action in this "Actions" setting. For information about the options, see CustomAction. To provide more than one action in this setting, separate the settings with a comma. For example, if you have a custom "PublishMetrics" action that you've named "MyMetricsAction", then you could specify the standard action "aws:pass" and the custom action with "[“aws:pass”, “MyMetricsAction”]". * *(string) --* * **Priority** *(integer) --* Indicates the order in which to run this rule relative to all of the rules that are defined for a stateless rule group. Network Firewall evaluates the rules in a rule group starting with the lowest priority setting. You must ensure that the priority settings are unique for the rule group. Each stateless rule group uses exactly one "StatelessRulesAndCustomActions" object, and each "StatelessRulesAndCustomActions" contains exactly one "StatelessRules" object. To ensure unique priority settings for your rule groups, set unique priorities for the stateless rules that you define inside any single "StatelessRules" object. You can change the priority settings of your rules at any time. To make it easier to insert rules later, number them so there's a wide range in between, for example use 100, 200, and so on. * **CustomActions** *(list) --* Defines an array of individual custom action definitions that are available for use by the stateless rules in this "StatelessRulesAndCustomActions" specification. You name each custom action that you define, and then you can use it by name in your StatelessRule RuleDefinition "Actions" specification. * *(dict) --* An optional, non-standard action to use for stateless packet handling. You can define this in addition to the standard action that you must specify. You define and name the custom actions that you want to be able to use, and then you reference them by name in your actions settings. You can use custom actions in the following places: * In a rule group's StatelessRulesAndCustomActions specification. The custom actions are available for use by name inside the "StatelessRulesAndCustomActions" where you define them. You can use them for your stateless rule actions to specify what to do with a packet that matches the rule's match attributes. * In a FirewallPolicy specification, in "StatelessCustomActions". The custom actions are available for use inside the policy where you define them. You can use them for the policy's default stateless actions settings to specify what to do with packets that don't match any of the policy's stateless rules. * **ActionName** *(string) --* The descriptive name of the custom action. You can't change the name of a custom action after you create it. * **ActionDefinition** *(dict) --* The custom action associated with the action name. * **PublishMetricAction** *(dict) --* Stateless inspection criteria that publishes the specified metrics to Amazon CloudWatch for the matching packet. This setting defines a CloudWatch dimension value to be published. You can pair this custom action with any of the standard stateless rule actions. For example, you could pair this in a rule action with the standard action that forwards the packet for stateful inspection. Then, when a packet matches the rule, Network Firewall publishes metrics for the packet and forwards it. * **Dimensions** *(list) --* * *(dict) --* The value to use in an Amazon CloudWatch custom metric dimension. This is used in the "PublishMetrics" CustomAction. A CloudWatch custom metric dimension is a name/value pair that's part of the identity of a metric. Network Firewall sets the dimension name to "CustomAction" and you provide the dimension value. For more information about CloudWatch custom metric dimensions, see Publishing Custom Metrics in the Amazon CloudWatch User Guide. * **Value** *(string) --* The value to use in the custom metric dimension. * **StatefulRuleOptions** *(dict) --* Additional options governing how Network Firewall handles stateful rules. The policies where you use your stateful rule group must have stateful rule options settings that are compatible with these settings. Some limitations apply; for more information, see Strict evaluation order in the *Network Firewall Developer Guide*. * **RuleOrder** *(string) --* Indicates how to manage the order of the rule evaluation for the rule group. "DEFAULT_ACTION_ORDER" is the default behavior. Stateful rules are provided to the rule engine as Suricata compatible strings, and Suricata evaluates them based on certain settings. For more information, see Evaluation order for stateful rules in the *Network Firewall Developer Guide*. * **RuleGroupResponse** *(dict) --* The high-level properties of a rule group. This, along with the RuleGroup, define the rule group. You can retrieve all objects for a rule group by calling DescribeRuleGroup. * **RuleGroupArn** *(string) --* The Amazon Resource Name (ARN) of the rule group. Note: If this response is for a create request that had "DryRun" set to "TRUE", then this ARN is a placeholder that isn't attached to a valid resource. * **RuleGroupName** *(string) --* The descriptive name of the rule group. You can't change the name of a rule group after you create it. * **RuleGroupId** *(string) --* The unique identifier for the rule group. * **Description** *(string) --* A description of the rule group. * **Type** *(string) --* Indicates whether the rule group is stateless or stateful. If the rule group is stateless, it contains stateless rules. If it is stateful, it contains stateful rules. * **Capacity** *(integer) --* The maximum operating resources that this rule group can use. Rule group capacity is fixed at creation. When you update a rule group, you are limited to this capacity. When you reference a rule group from a firewall policy, Network Firewall reserves this capacity for the rule group. You can retrieve the capacity that would be required for a rule group before you create the rule group by calling CreateRuleGroup with "DryRun" set to "TRUE". * **RuleGroupStatus** *(string) --* Detailed information about the current status of a rule group. * **Tags** *(list) --* The key:value pairs to associate with the resource. * *(dict) --* A key:value pair associated with an Amazon Web Services resource. The key:value pair can be anything you define. Typically, the tag key represents a category (such as "environment") and the tag value represents a specific value within that category (such as "test," "development," or "production"). You can add up to 50 tags to each Amazon Web Services resource. * **Key** *(string) --* The part of the key:value pair that defines a tag. You can use a tag key to describe a category of information, such as "customer." Tag keys are case- sensitive. * **Value** *(string) --* The part of the key:value pair that defines a tag. You can use a tag value to describe a specific value within a category, such as "companyA" or "companyB." Tag values are case-sensitive. * **ConsumedCapacity** *(integer) --* The number of capacity units currently consumed by the rule group rules. * **NumberOfAssociations** *(integer) --* The number of firewall policies that use this rule group. * **EncryptionConfiguration** *(dict) --* A complex type that contains the Amazon Web Services KMS encryption configuration settings for your rule group. * **KeyId** *(string) --* The ID of the Amazon Web Services Key Management Service (KMS) customer managed key. You can use any of the key identifiers that KMS supports, unless you're using a key that's managed by another account. If you're using a key managed by another account, then specify the key ARN. For more information, see Key ID in the *Amazon Web Services KMS Developer Guide*. * **Type** *(string) --* The type of Amazon Web Services KMS key to use for encryption of your Network Firewall resources. * **SourceMetadata** *(dict) --* A complex type that contains metadata about the rule group that your own rule group is copied from. You can use the metadata to track the version updates made to the originating rule group. * **SourceArn** *(string) --* The Amazon Resource Name (ARN) of the rule group that your own rule group is copied from. * **SourceUpdateToken** *(string) --* The update token of the Amazon Web Services managed rule group that your own rule group is copied from. To determine the update token for the managed rule group, call DescribeRuleGroup. * **SnsTopic** *(string) --* The Amazon Resource Name (ARN) of the Amazon Simple Notification Service SNS topic that's used to record changes to the managed rule group. You can subscribe to the SNS topic to receive notifications when the managed rule group is modified, such as for new versions and for version expiration. For more information, see the Amazon Simple Notification Service Developer Guide.. * **LastModifiedTime** *(datetime) --* The last time that the rule group was changed. * **AnalysisResults** *(list) --* The list of analysis results for "AnalyzeRuleGroup". If you set "AnalyzeRuleGroup" to "TRUE" in CreateRuleGroup, UpdateRuleGroup, or DescribeRuleGroup, Network Firewall analyzes the rule group and identifies the rules that might adversely effect your firewall's functionality. For example, if Network Firewall detects a rule that's routing traffic asymmetrically, which impacts the service's ability to properly process traffic, the service includes the rule in the list of analysis results. * *(dict) --* The analysis result for Network Firewall's stateless rule group analyzer. Every time you call CreateRuleGroup, UpdateRuleGroup, or DescribeRuleGroup on a stateless rule group, Network Firewall analyzes the stateless rule groups in your account and identifies the rules that might adversely effect your firewall's functionality. For example, if Network Firewall detects a rule that's routing traffic asymmetrically, which impacts the service's ability to properly process traffic, the service includes the rule in a list of analysis results. The "AnalysisResult" data type is not related to traffic analysis reports you generate using StartAnalysisReport. For information on traffic analysis report results, see AnalysisTypeReportResult. * **IdentifiedRuleIds** *(list) --* The priority number of the stateless rules identified in the analysis. * *(string) --* * **IdentifiedType** *(string) --* The types of rule configurations that Network Firewall analyzes your rule groups for. Network Firewall analyzes stateless rule groups for the following types of rule configurations: * "STATELESS_RULE_FORWARDING_ASYMMETRICALLY" Cause: One or more stateless rules with the action "pass" or "forward" are forwarding traffic asymmetrically. Specifically, the rule's set of source IP addresses or their associated port numbers, don't match the set of destination IP addresses or their associated port numbers. To mitigate: Make sure that there's an existing return path. For example, if the rule allows traffic from source 10.1.0.0/24 to destination 20.1.0.0/24, you should allow return traffic from source 20.1.0.0/24 to destination 10.1.0.0/24. * "STATELESS_RULE_CONTAINS_TCP_FLAGS" Cause: At least one stateless rule with the action "pass" or "forward" contains TCP flags that are inconsistent in the forward and return directions. To mitigate: Prevent asymmetric routing issues caused by TCP flags by following these actions: * Remove unnecessary TCP flag inspections from the rules. * If you need to inspect TCP flags, check that the rules correctly account for changes in TCP flags throughout the TCP connection cycle, for example "SYN" and "ACK" flags used in a 3-way TCP handshake. * **AnalysisDetail** *(string) --* Provides analysis details for the identified rule. * **SummaryConfiguration** *(dict) --* A complex type containing the currently selected rule option fields that will be displayed for rule summarization returned by DescribeRuleGroupSummary. * The "RuleOptions" specified in SummaryConfiguration * Rule metadata organization preferences * **RuleOptions** *(list) --* Specifies the selected rule options returned by DescribeRuleGroupSummary. * *(string) --* **Exceptions** * "NetworkFirewall.Client.exceptions.InvalidRequestException" * "NetworkFirewall.Client.exceptions.ResourceNotFoundException" * "NetworkFirewall.Client.exceptions.ThrottlingException" * "NetworkFirewall.Client.exceptions.InternalServerError" NetworkFirewall / Client / get_waiter get_waiter ********** NetworkFirewall.Client.get_waiter(waiter_name) Returns an object that can wait for some condition. Parameters: **waiter_name** (*str*) -- The name of the waiter to get. See the waiters section of the service docs for a list of available waiters. Returns: The specified waiter object. Return type: "botocore.waiter.Waiter" NetworkFirewall / Client / associate_availability_zones associate_availability_zones **************************** NetworkFirewall.Client.associate_availability_zones(**kwargs) Associates the specified Availability Zones with a transit gateway- attached firewall. For each Availability Zone, Network Firewall creates a firewall endpoint to process traffic. You can specify one or more Availability Zones where you want to deploy the firewall. After adding Availability Zones, you must update your transit gateway route tables to direct traffic through the new firewall endpoints. Use DescribeFirewall to monitor the status of the new endpoints. See also: AWS API Documentation **Request Syntax** response = client.associate_availability_zones( UpdateToken='string', FirewallArn='string', FirewallName='string', AvailabilityZoneMappings=[ { 'AvailabilityZone': 'string' }, ] ) Parameters: * **UpdateToken** (*string*) -- An optional token that you can use for optimistic locking. Network Firewall returns a token to your requests that access the firewall. The token marks the state of the firewall resource at the time of the request. To make an unconditional change to the firewall, omit the token in your update request. Without the token, Network Firewall performs your updates regardless of whether the firewall has changed since you last retrieved it. To make a conditional change to the firewall, provide the token in your update request. Network Firewall uses the token to ensure that the firewall hasn't changed since you last retrieved it. If it has changed, the operation fails with an "InvalidTokenException". If this happens, retrieve the firewall again to get a current copy of it with a new token. Reapply your changes as needed, then try the operation again using the new token. * **FirewallArn** (*string*) -- The Amazon Resource Name (ARN) of the firewall. You must specify the ARN or the name, and you can specify both. * **FirewallName** (*string*) -- The descriptive name of the firewall. You can't change the name of a firewall after you create it. You must specify the ARN or the name, and you can specify both. * **AvailabilityZoneMappings** (*list*) -- **[REQUIRED]** Required. The Availability Zones where you want to create firewall endpoints. You must specify at least one Availability Zone. * *(dict) --* Defines the mapping between an Availability Zone and a firewall endpoint for a transit gateway-attached firewall. Each mapping represents where the firewall can process traffic. You use these mappings when calling CreateFirewall, AssociateAvailabilityZones, and DisassociateAvailabilityZones. To retrieve the current Availability Zone mappings for a firewall, use DescribeFirewall. * **AvailabilityZone** *(string) --* **[REQUIRED]** The ID of the Availability Zone where the firewall endpoint is located. For example, "us-east-2a". The Availability Zone must be in the same Region as the transit gateway. Return type: dict Returns: **Response Syntax** { 'FirewallArn': 'string', 'FirewallName': 'string', 'AvailabilityZoneMappings': [ { 'AvailabilityZone': 'string' }, ], 'UpdateToken': 'string' } **Response Structure** * *(dict) --* * **FirewallArn** *(string) --* The Amazon Resource Name (ARN) of the firewall. * **FirewallName** *(string) --* The descriptive name of the firewall. You can't change the name of a firewall after you create it. * **AvailabilityZoneMappings** *(list) --* The Availability Zones where Network Firewall created firewall endpoints. Each mapping specifies an Availability Zone where the firewall processes traffic. * *(dict) --* Defines the mapping between an Availability Zone and a firewall endpoint for a transit gateway-attached firewall. Each mapping represents where the firewall can process traffic. You use these mappings when calling CreateFirewall, AssociateAvailabilityZones, and DisassociateAvailabilityZones. To retrieve the current Availability Zone mappings for a firewall, use DescribeFirewall. * **AvailabilityZone** *(string) --* The ID of the Availability Zone where the firewall endpoint is located. For example, "us-east-2a". The Availability Zone must be in the same Region as the transit gateway. * **UpdateToken** *(string) --* An optional token that you can use for optimistic locking. Network Firewall returns a token to your requests that access the firewall. The token marks the state of the firewall resource at the time of the request. To make an unconditional change to the firewall, omit the token in your update request. Without the token, Network Firewall performs your updates regardless of whether the firewall has changed since you last retrieved it. To make a conditional change to the firewall, provide the token in your update request. Network Firewall uses the token to ensure that the firewall hasn't changed since you last retrieved it. If it has changed, the operation fails with an "InvalidTokenException". If this happens, retrieve the firewall again to get a current copy of it with a new token. Reapply your changes as needed, then try the operation again using the new token. **Exceptions** * "NetworkFirewall.Client.exceptions.InvalidRequestException" * "NetworkFirewall.Client.exceptions.InternalServerError" * "NetworkFirewall.Client.exceptions.ResourceNotFoundException" * "NetworkFirewall.Client.exceptions.ThrottlingException" * "NetworkFirewall.Client.exceptions.InvalidTokenException" * "NetworkFirewall.Client.exceptions.InvalidOperationException" * "NetworkFirewall.Client.exceptions.InsufficientCapacityException" NetworkFirewall / Client / list_tls_inspection_configurations list_tls_inspection_configurations ********************************** NetworkFirewall.Client.list_tls_inspection_configurations(**kwargs) Retrieves the metadata for the TLS inspection configurations that you have defined. Depending on your setting for max results and the number of TLS inspection configurations, a single call might not return the full list. See also: AWS API Documentation **Request Syntax** response = client.list_tls_inspection_configurations( NextToken='string', MaxResults=123 ) Parameters: * **NextToken** (*string*) -- When you request a list of objects with a "MaxResults" setting, if the number of objects that are still available for retrieval exceeds the maximum you requested, Network Firewall returns a "NextToken" value in the response. To retrieve the next batch of objects, use the token returned from the prior request in your next request. * **MaxResults** (*integer*) -- The maximum number of objects that you want Network Firewall to return for this request. If more objects are available, in the response, Network Firewall provides a "NextToken" value that you can use in a subsequent call to get the next batch of objects. Return type: dict Returns: **Response Syntax** { 'NextToken': 'string', 'TLSInspectionConfigurations': [ { 'Name': 'string', 'Arn': 'string' }, ] } **Response Structure** * *(dict) --* * **NextToken** *(string) --* When you request a list of objects with a "MaxResults" setting, if the number of objects that are still available for retrieval exceeds the maximum you requested, Network Firewall returns a "NextToken" value in the response. To retrieve the next batch of objects, use the token returned from the prior request in your next request. * **TLSInspectionConfigurations** *(list) --* The TLS inspection configuration metadata objects that you've defined. Depending on your setting for max results and the number of TLS inspection configurations, this might not be the full list. * *(dict) --* High-level information about a TLS inspection configuration, returned by "ListTLSInspectionConfigurations". You can use the information provided in the metadata to retrieve and manage a TLS configuration. * **Name** *(string) --* The descriptive name of the TLS inspection configuration. You can't change the name of a TLS inspection configuration after you create it. * **Arn** *(string) --* The Amazon Resource Name (ARN) of the TLS inspection configuration. **Exceptions** * "NetworkFirewall.Client.exceptions.InvalidRequestException" * "NetworkFirewall.Client.exceptions.InternalServerError" * "NetworkFirewall.Client.exceptions.ThrottlingException" NetworkFirewall / Client / get_analysis_report_results get_analysis_report_results *************************** NetworkFirewall.Client.get_analysis_report_results(**kwargs) The results of a "COMPLETED" analysis report generated with StartAnalysisReport. For more information, see AnalysisTypeReportResult. See also: AWS API Documentation **Request Syntax** response = client.get_analysis_report_results( FirewallName='string', AnalysisReportId='string', FirewallArn='string', NextToken='string', MaxResults=123 ) Parameters: * **FirewallName** (*string*) -- The descriptive name of the firewall. You can't change the name of a firewall after you create it. You must specify the ARN or the name, and you can specify both. * **AnalysisReportId** (*string*) -- **[REQUIRED]** The unique ID of the query that ran when you requested an analysis report. * **FirewallArn** (*string*) -- The Amazon Resource Name (ARN) of the firewall. You must specify the ARN or the name, and you can specify both. * **NextToken** (*string*) -- When you request a list of objects with a "MaxResults" setting, if the number of objects that are still available for retrieval exceeds the maximum you requested, Network Firewall returns a "NextToken" value in the response. To retrieve the next batch of objects, use the token returned from the prior request in your next request. * **MaxResults** (*integer*) -- The maximum number of objects that you want Network Firewall to return for this request. If more objects are available, in the response, Network Firewall provides a "NextToken" value that you can use in a subsequent call to get the next batch of objects. Return type: dict Returns: **Response Syntax** { 'Status': 'string', 'StartTime': datetime(2015, 1, 1), 'EndTime': datetime(2015, 1, 1), 'ReportTime': datetime(2015, 1, 1), 'AnalysisType': 'TLS_SNI'|'HTTP_HOST', 'NextToken': 'string', 'AnalysisReportResults': [ { 'Protocol': 'string', 'FirstAccessed': datetime(2015, 1, 1), 'LastAccessed': datetime(2015, 1, 1), 'Domain': 'string', 'Hits': { 'Count': 123 }, 'UniqueSources': { 'Count': 123 } }, ] } **Response Structure** * *(dict) --* * **Status** *(string) --* The status of the analysis report you specify. Statuses include "RUNNING", "COMPLETED", or "FAILED". * **StartTime** *(datetime) --* The date and time within the last 30 days from which to start retrieving analysis data, in UTC format (for example, "YYYY-MM-DDTHH:MM:SSZ". * **EndTime** *(datetime) --* The date and time, up to the current date, from which to stop retrieving analysis data, in UTC format (for example, "YYYY-MM-DDTHH:MM:SSZ"). * **ReportTime** *(datetime) --* The date and time the analysis report was ran. * **AnalysisType** *(string) --* The type of traffic that will be used to generate a report. * **NextToken** *(string) --* When you request a list of objects with a "MaxResults" setting, if the number of objects that are still available for retrieval exceeds the maximum you requested, Network Firewall returns a "NextToken" value in the response. To retrieve the next batch of objects, use the token returned from the prior request in your next request. * **AnalysisReportResults** *(list) --* Retrieves the results of a traffic analysis report. * *(dict) --* The results of a "COMPLETED" analysis report generated with StartAnalysisReport. For an example of traffic analysis report results, see the response syntax of GetAnalysisReportResults. * **Protocol** *(string) --* The type of traffic captured by the analysis report. * **FirstAccessed** *(datetime) --* The date and time any domain was first accessed (within the last 30 day period). * **LastAccessed** *(datetime) --* The date and time any domain was last accessed (within the last 30 day period). * **Domain** *(string) --* The most frequently accessed domains. * **Hits** *(dict) --* The number of attempts made to access a observed domain. * **Count** *(integer) --* The number of attempts made to access a domain. * **UniqueSources** *(dict) --* The number of unique source IP addresses that connected to a domain. * **Count** *(integer) --* The number of unique source IP addresses that connected to a domain. **Exceptions** * "NetworkFirewall.Client.exceptions.InvalidRequestException" * "NetworkFirewall.Client.exceptions.InternalServerError" * "NetworkFirewall.Client.exceptions.ResourceNotFoundException" * "NetworkFirewall.Client.exceptions.ThrottlingException" NetworkFirewall / Client / associate_subnets associate_subnets ***************** NetworkFirewall.Client.associate_subnets(**kwargs) Associates the specified subnets in the Amazon VPC to the firewall. You can specify one subnet for each of the Availability Zones that the VPC spans. This request creates an Network Firewall firewall endpoint in each of the subnets. To enable the firewall's protections, you must also modify the VPC's route tables for each subnet's Availability Zone, to redirect the traffic that's coming into and going out of the zone through the firewall endpoint. See also: AWS API Documentation **Request Syntax** response = client.associate_subnets( UpdateToken='string', FirewallArn='string', FirewallName='string', SubnetMappings=[ { 'SubnetId': 'string', 'IPAddressType': 'DUALSTACK'|'IPV4'|'IPV6' }, ] ) Parameters: * **UpdateToken** (*string*) -- An optional token that you can use for optimistic locking. Network Firewall returns a token to your requests that access the firewall. The token marks the state of the firewall resource at the time of the request. To make an unconditional change to the firewall, omit the token in your update request. Without the token, Network Firewall performs your updates regardless of whether the firewall has changed since you last retrieved it. To make a conditional change to the firewall, provide the token in your update request. Network Firewall uses the token to ensure that the firewall hasn't changed since you last retrieved it. If it has changed, the operation fails with an "InvalidTokenException". If this happens, retrieve the firewall again to get a current copy of it with a new token. Reapply your changes as needed, then try the operation again using the new token. * **FirewallArn** (*string*) -- The Amazon Resource Name (ARN) of the firewall. You must specify the ARN or the name, and you can specify both. * **FirewallName** (*string*) -- The descriptive name of the firewall. You can't change the name of a firewall after you create it. You must specify the ARN or the name, and you can specify both. * **SubnetMappings** (*list*) -- **[REQUIRED]** The IDs of the subnets that you want to associate with the firewall. * *(dict) --* The ID for a subnet that's used in an association with a firewall. This is used in CreateFirewall, AssociateSubnets, and CreateVpcEndpointAssociation. Network Firewall creates an instance of the associated firewall in each subnet that you specify, to filter traffic in the subnet's Availability Zone. * **SubnetId** *(string) --* **[REQUIRED]** The unique identifier for the subnet. * **IPAddressType** *(string) --* The subnet's IP address type. You can't change the IP address type after you create the subnet. Return type: dict Returns: **Response Syntax** { 'FirewallArn': 'string', 'FirewallName': 'string', 'SubnetMappings': [ { 'SubnetId': 'string', 'IPAddressType': 'DUALSTACK'|'IPV4'|'IPV6' }, ], 'UpdateToken': 'string' } **Response Structure** * *(dict) --* * **FirewallArn** *(string) --* The Amazon Resource Name (ARN) of the firewall. * **FirewallName** *(string) --* The descriptive name of the firewall. You can't change the name of a firewall after you create it. * **SubnetMappings** *(list) --* The IDs of the subnets that are associated with the firewall. * *(dict) --* The ID for a subnet that's used in an association with a firewall. This is used in CreateFirewall, AssociateSubnets, and CreateVpcEndpointAssociation. Network Firewall creates an instance of the associated firewall in each subnet that you specify, to filter traffic in the subnet's Availability Zone. * **SubnetId** *(string) --* The unique identifier for the subnet. * **IPAddressType** *(string) --* The subnet's IP address type. You can't change the IP address type after you create the subnet. * **UpdateToken** *(string) --* An optional token that you can use for optimistic locking. Network Firewall returns a token to your requests that access the firewall. The token marks the state of the firewall resource at the time of the request. To make an unconditional change to the firewall, omit the token in your update request. Without the token, Network Firewall performs your updates regardless of whether the firewall has changed since you last retrieved it. To make a conditional change to the firewall, provide the token in your update request. Network Firewall uses the token to ensure that the firewall hasn't changed since you last retrieved it. If it has changed, the operation fails with an "InvalidTokenException". If this happens, retrieve the firewall again to get a current copy of it with a new token. Reapply your changes as needed, then try the operation again using the new token. **Exceptions** * "NetworkFirewall.Client.exceptions.InvalidRequestException" * "NetworkFirewall.Client.exceptions.InternalServerError" * "NetworkFirewall.Client.exceptions.ResourceNotFoundException" * "NetworkFirewall.Client.exceptions.ThrottlingException" * "NetworkFirewall.Client.exceptions.InvalidTokenException" * "NetworkFirewall.Client.exceptions.InvalidOperationException" * "NetworkFirewall.Client.exceptions.InsufficientCapacityException" NetworkFirewall / Client / create_vpc_endpoint_association create_vpc_endpoint_association ******************************* NetworkFirewall.Client.create_vpc_endpoint_association(**kwargs) Creates a firewall endpoint for an Network Firewall firewall. This type of firewall endpoint is independent of the firewall endpoints that you specify in the "Firewall" itself, and you define it in addition to those endpoints after the firewall has been created. You can define a VPC endpoint association using a different VPC than the one you used in the firewall specifications. See also: AWS API Documentation **Request Syntax** response = client.create_vpc_endpoint_association( FirewallArn='string', VpcId='string', SubnetMapping={ 'SubnetId': 'string', 'IPAddressType': 'DUALSTACK'|'IPV4'|'IPV6' }, Description='string', Tags=[ { 'Key': 'string', 'Value': 'string' }, ] ) Parameters: * **FirewallArn** (*string*) -- **[REQUIRED]** The Amazon Resource Name (ARN) of the firewall. * **VpcId** (*string*) -- **[REQUIRED]** The unique identifier of the VPC where you want to create a firewall endpoint. * **SubnetMapping** (*dict*) -- **[REQUIRED]** The ID for a subnet that's used in an association with a firewall. This is used in CreateFirewall, AssociateSubnets, and CreateVpcEndpointAssociation. Network Firewall creates an instance of the associated firewall in each subnet that you specify, to filter traffic in the subnet's Availability Zone. * **SubnetId** *(string) --* **[REQUIRED]** The unique identifier for the subnet. * **IPAddressType** *(string) --* The subnet's IP address type. You can't change the IP address type after you create the subnet. * **Description** (*string*) -- A description of the VPC endpoint association. * **Tags** (*list*) -- The key:value pairs to associate with the resource. * *(dict) --* A key:value pair associated with an Amazon Web Services resource. The key:value pair can be anything you define. Typically, the tag key represents a category (such as "environment") and the tag value represents a specific value within that category (such as "test," "development," or "production"). You can add up to 50 tags to each Amazon Web Services resource. * **Key** *(string) --* **[REQUIRED]** The part of the key:value pair that defines a tag. You can use a tag key to describe a category of information, such as "customer." Tag keys are case-sensitive. * **Value** *(string) --* **[REQUIRED]** The part of the key:value pair that defines a tag. You can use a tag value to describe a specific value within a category, such as "companyA" or "companyB." Tag values are case-sensitive. Return type: dict Returns: **Response Syntax** { 'VpcEndpointAssociation': { 'VpcEndpointAssociationId': 'string', 'VpcEndpointAssociationArn': 'string', 'FirewallArn': 'string', 'VpcId': 'string', 'SubnetMapping': { 'SubnetId': 'string', 'IPAddressType': 'DUALSTACK'|'IPV4'|'IPV6' }, 'Description': 'string', 'Tags': [ { 'Key': 'string', 'Value': 'string' }, ] }, 'VpcEndpointAssociationStatus': { 'Status': 'PROVISIONING'|'DELETING'|'READY', 'AssociationSyncState': { 'string': { 'Attachment': { 'SubnetId': 'string', 'EndpointId': 'string', 'Status': 'CREATING'|'DELETING'|'FAILED'|'ERROR'|'SCALING'|'READY', 'StatusMessage': 'string' } } } } } **Response Structure** * *(dict) --* * **VpcEndpointAssociation** *(dict) --* The configuration settings for the VPC endpoint association. These settings include the firewall and the VPC and subnet to use for the firewall endpoint. * **VpcEndpointAssociationId** *(string) --* The unique identifier of the VPC endpoint association. * **VpcEndpointAssociationArn** *(string) --* The Amazon Resource Name (ARN) of a VPC endpoint association. * **FirewallArn** *(string) --* The Amazon Resource Name (ARN) of the firewall. * **VpcId** *(string) --* The unique identifier of the VPC for the endpoint association. * **SubnetMapping** *(dict) --* The ID for a subnet that's used in an association with a firewall. This is used in CreateFirewall, AssociateSubnets, and CreateVpcEndpointAssociation. Network Firewall creates an instance of the associated firewall in each subnet that you specify, to filter traffic in the subnet's Availability Zone. * **SubnetId** *(string) --* The unique identifier for the subnet. * **IPAddressType** *(string) --* The subnet's IP address type. You can't change the IP address type after you create the subnet. * **Description** *(string) --* A description of the VPC endpoint association. * **Tags** *(list) --* The key:value pairs to associate with the resource. * *(dict) --* A key:value pair associated with an Amazon Web Services resource. The key:value pair can be anything you define. Typically, the tag key represents a category (such as "environment") and the tag value represents a specific value within that category (such as "test," "development," or "production"). You can add up to 50 tags to each Amazon Web Services resource. * **Key** *(string) --* The part of the key:value pair that defines a tag. You can use a tag key to describe a category of information, such as "customer." Tag keys are case- sensitive. * **Value** *(string) --* The part of the key:value pair that defines a tag. You can use a tag value to describe a specific value within a category, such as "companyA" or "companyB." Tag values are case-sensitive. * **VpcEndpointAssociationStatus** *(dict) --* Detailed information about the current status of a VpcEndpointAssociation. You can retrieve this by calling DescribeVpcEndpointAssociation and providing the VPC endpoint association ARN. * **Status** *(string) --* The readiness of the configured firewall endpoint to handle network traffic. * **AssociationSyncState** *(dict) --* The list of the Availability Zone sync states for all subnets that are defined by the firewall. * *(string) --* * *(dict) --* The status of the firewall endpoint defined by a "VpcEndpointAssociation". * **Attachment** *(dict) --* The definition and status of the firewall endpoint for a single subnet. In each configured subnet, Network Firewall instantiates a firewall endpoint to handle network traffic. This data type is used for any firewall endpoint type: * For "Firewall.SubnetMappings", this "Attachment" is part of the "FirewallStatus" sync states information. You define firewall subnets using "CreateFirewall" and "AssociateSubnets". * For "VpcEndpointAssociation", this "Attachment" is part of the "VpcEndpointAssociationStatus" sync states information. You define these subnets using "CreateVpcEndpointAssociation". * **SubnetId** *(string) --* The unique identifier of the subnet that you've specified to be used for a firewall endpoint. * **EndpointId** *(string) --* The identifier of the firewall endpoint that Network Firewall has instantiated in the subnet. You use this to identify the firewall endpoint in the VPC route tables, when you redirect the VPC traffic through the endpoint. * **Status** *(string) --* The current status of the firewall endpoint instantiation in the subnet. When this value is "READY", the endpoint is available to handle network traffic. Otherwise, this value reflects its state, for example "CREATING" or "DELETING". * **StatusMessage** *(string) --* If Network Firewall fails to create or delete the firewall endpoint in the subnet, it populates this with the reason for the error or failure and how to resolve it. A "FAILED" status indicates a non- recoverable state, and a "ERROR" status indicates an issue that you can fix. Depending on the error, it can take as many as 15 minutes to populate this field. For more information about the causes for failiure or errors and solutions available for this field, see Troubleshooting firewall endpoint failures in the *Network Firewall Developer Guide*. **Exceptions** * "NetworkFirewall.Client.exceptions.LimitExceededException" * "NetworkFirewall.Client.exceptions.InvalidRequestException" * "NetworkFirewall.Client.exceptions.ThrottlingException" * "NetworkFirewall.Client.exceptions.InternalServerError" * "NetworkFirewall.Client.exceptions.InsufficientCapacityException" * "NetworkFirewall.Client.exceptions.ResourceNotFoundException" * "NetworkFirewall.Client.exceptions.InvalidOperationException" NetworkFirewall / Client / start_analysis_report start_analysis_report ********************* NetworkFirewall.Client.start_analysis_report(**kwargs) Generates a traffic analysis report for the timeframe and traffic type you specify. For information on the contents of a traffic analysis report, see AnalysisReport. See also: AWS API Documentation **Request Syntax** response = client.start_analysis_report( FirewallName='string', FirewallArn='string', AnalysisType='TLS_SNI'|'HTTP_HOST' ) Parameters: * **FirewallName** (*string*) -- The descriptive name of the firewall. You can't change the name of a firewall after you create it. You must specify the ARN or the name, and you can specify both. * **FirewallArn** (*string*) -- The Amazon Resource Name (ARN) of the firewall. You must specify the ARN or the name, and you can specify both. * **AnalysisType** (*string*) -- **[REQUIRED]** The type of traffic that will be used to generate a report. Return type: dict Returns: **Response Syntax** { 'AnalysisReportId': 'string' } **Response Structure** * *(dict) --* * **AnalysisReportId** *(string) --* The unique ID of the query that ran when you requested an analysis report. **Exceptions** * "NetworkFirewall.Client.exceptions.InvalidRequestException" * "NetworkFirewall.Client.exceptions.InternalServerError" * "NetworkFirewall.Client.exceptions.ResourceNotFoundException" * "NetworkFirewall.Client.exceptions.ThrottlingException" NetworkFirewall / Client / list_firewall_policies list_firewall_policies ********************** NetworkFirewall.Client.list_firewall_policies(**kwargs) Retrieves the metadata for the firewall policies that you have defined. Depending on your setting for max results and the number of firewall policies, a single call might not return the full list. See also: AWS API Documentation **Request Syntax** response = client.list_firewall_policies( NextToken='string', MaxResults=123 ) Parameters: * **NextToken** (*string*) -- When you request a list of objects with a "MaxResults" setting, if the number of objects that are still available for retrieval exceeds the maximum you requested, Network Firewall returns a "NextToken" value in the response. To retrieve the next batch of objects, use the token returned from the prior request in your next request. * **MaxResults** (*integer*) -- The maximum number of objects that you want Network Firewall to return for this request. If more objects are available, in the response, Network Firewall provides a "NextToken" value that you can use in a subsequent call to get the next batch of objects. Return type: dict Returns: **Response Syntax** { 'NextToken': 'string', 'FirewallPolicies': [ { 'Name': 'string', 'Arn': 'string' }, ] } **Response Structure** * *(dict) --* * **NextToken** *(string) --* When you request a list of objects with a "MaxResults" setting, if the number of objects that are still available for retrieval exceeds the maximum you requested, Network Firewall returns a "NextToken" value in the response. To retrieve the next batch of objects, use the token returned from the prior request in your next request. * **FirewallPolicies** *(list) --* The metadata for the firewall policies. Depending on your setting for max results and the number of firewall policies that you have, this might not be the full list. * *(dict) --* High-level information about a firewall policy, returned by operations like create and describe. You can use the information provided in the metadata to retrieve and manage a firewall policy. You can retrieve all objects for a firewall policy by calling DescribeFirewallPolicy. * **Name** *(string) --* The descriptive name of the firewall policy. You can't change the name of a firewall policy after you create it. * **Arn** *(string) --* The Amazon Resource Name (ARN) of the firewall policy. **Exceptions** * "NetworkFirewall.Client.exceptions.InvalidRequestException" * "NetworkFirewall.Client.exceptions.ThrottlingException" * "NetworkFirewall.Client.exceptions.InternalServerError" NetworkFirewall / Client / delete_firewall delete_firewall *************** NetworkFirewall.Client.delete_firewall(**kwargs) Deletes the specified Firewall and its FirewallStatus. This operation requires the firewall's "DeleteProtection" flag to be "FALSE". You can't revert this operation. You can check whether a firewall is in use by reviewing the route tables for the Availability Zones where you have firewall subnet mappings. Retrieve the subnet mappings by calling DescribeFirewall. You define and update the route tables through Amazon VPC. As needed, update the route tables for the zones to remove the firewall endpoints. When the route tables no longer use the firewall endpoints, you can remove the firewall safely. To delete a firewall, remove the delete protection if you need to using UpdateFirewallDeleteProtection, then delete the firewall by calling DeleteFirewall. See also: AWS API Documentation **Request Syntax** response = client.delete_firewall( FirewallName='string', FirewallArn='string' ) Parameters: * **FirewallName** (*string*) -- The descriptive name of the firewall. You can't change the name of a firewall after you create it. You must specify the ARN or the name, and you can specify both. * **FirewallArn** (*string*) -- The Amazon Resource Name (ARN) of the firewall. You must specify the ARN or the name, and you can specify both. Return type: dict Returns: **Response Syntax** { 'Firewall': { 'FirewallName': 'string', 'FirewallArn': 'string', 'FirewallPolicyArn': 'string', 'VpcId': 'string', 'SubnetMappings': [ { 'SubnetId': 'string', 'IPAddressType': 'DUALSTACK'|'IPV4'|'IPV6' }, ], 'DeleteProtection': True|False, 'SubnetChangeProtection': True|False, 'FirewallPolicyChangeProtection': True|False, 'Description': 'string', 'FirewallId': 'string', 'Tags': [ { 'Key': 'string', 'Value': 'string' }, ], 'EncryptionConfiguration': { 'KeyId': 'string', 'Type': 'CUSTOMER_KMS'|'AWS_OWNED_KMS_KEY' }, 'NumberOfAssociations': 123, 'EnabledAnalysisTypes': [ 'TLS_SNI'|'HTTP_HOST', ], 'TransitGatewayId': 'string', 'TransitGatewayOwnerAccountId': 'string', 'AvailabilityZoneMappings': [ { 'AvailabilityZone': 'string' }, ], 'AvailabilityZoneChangeProtection': True|False }, 'FirewallStatus': { 'Status': 'PROVISIONING'|'DELETING'|'READY', 'ConfigurationSyncStateSummary': 'PENDING'|'IN_SYNC'|'CAPACITY_CONSTRAINED', 'SyncStates': { 'string': { 'Attachment': { 'SubnetId': 'string', 'EndpointId': 'string', 'Status': 'CREATING'|'DELETING'|'FAILED'|'ERROR'|'SCALING'|'READY', 'StatusMessage': 'string' }, 'Config': { 'string': { 'SyncStatus': 'PENDING'|'IN_SYNC'|'CAPACITY_CONSTRAINED', 'UpdateToken': 'string' } } } }, 'CapacityUsageSummary': { 'CIDRs': { 'AvailableCIDRCount': 123, 'UtilizedCIDRCount': 123, 'IPSetReferences': { 'string': { 'ResolvedCIDRCount': 123 } } } }, 'TransitGatewayAttachmentSyncState': { 'AttachmentId': 'string', 'TransitGatewayAttachmentStatus': 'CREATING'|'DELETING'|'DELETED'|'FAILED'|'ERROR'|'READY'|'PENDING_ACCEPTANCE'|'REJECTING'|'REJECTED', 'StatusMessage': 'string' } } } **Response Structure** * *(dict) --* * **Firewall** *(dict) --* A firewall defines the behavior of a firewall, the main VPC where the firewall is used, the Availability Zones where the firewall can be used, and one subnet to use for a firewall endpoint within each of the Availability Zones. The Availability Zones are defined implicitly in the subnet specifications. In addition to the firewall endpoints that you define in this "Firewall" specification, you can create firewall endpoints in "VpcEndpointAssociation" resources for any VPC, in any Availability Zone where the firewall is already in use. The status of the firewall, for example whether it's ready to filter network traffic, is provided in the corresponding FirewallStatus. You can retrieve both the firewall and firewall status by calling DescribeFirewall. * **FirewallName** *(string) --* The descriptive name of the firewall. You can't change the name of a firewall after you create it. * **FirewallArn** *(string) --* The Amazon Resource Name (ARN) of the firewall. * **FirewallPolicyArn** *(string) --* The Amazon Resource Name (ARN) of the firewall policy. The relationship of firewall to firewall policy is many to one. Each firewall requires one firewall policy association, and you can use the same firewall policy for multiple firewalls. * **VpcId** *(string) --* The unique identifier of the VPC where the firewall is in use. * **SubnetMappings** *(list) --* The primary public subnets that Network Firewall is using for the firewall. Network Firewall creates a firewall endpoint in each subnet. Create a subnet mapping for each Availability Zone where you want to use the firewall. These subnets are all defined for a single, primary VPC, and each must belong to a different Availability Zone. Each of these subnets establishes the availability of the firewall in its Availability Zone. In addition to these subnets, you can define other endpoints for the firewall in "VpcEndpointAssociation" resources. You can define these additional endpoints for any VPC, and for any of the Availability Zones where the firewall resource already has a subnet mapping. VPC endpoint associations give you the ability to protect multiple VPCs using a single firewall, and to define multiple firewall endpoints for a VPC in a single Availability Zone. * *(dict) --* The ID for a subnet that's used in an association with a firewall. This is used in CreateFirewall, AssociateSubnets, and CreateVpcEndpointAssociation. Network Firewall creates an instance of the associated firewall in each subnet that you specify, to filter traffic in the subnet's Availability Zone. * **SubnetId** *(string) --* The unique identifier for the subnet. * **IPAddressType** *(string) --* The subnet's IP address type. You can't change the IP address type after you create the subnet. * **DeleteProtection** *(boolean) --* A flag indicating whether it is possible to delete the firewall. A setting of "TRUE" indicates that the firewall is protected against deletion. Use this setting to protect against accidentally deleting a firewall that is in use. When you create a firewall, the operation initializes this flag to "TRUE". * **SubnetChangeProtection** *(boolean) --* A setting indicating whether the firewall is protected against changes to the subnet associations. Use this setting to protect against accidentally modifying the subnet associations for a firewall that is in use. When you create a firewall, the operation initializes this setting to "TRUE". * **FirewallPolicyChangeProtection** *(boolean) --* A setting indicating whether the firewall is protected against a change to the firewall policy association. Use this setting to protect against accidentally modifying the firewall policy for a firewall that is in use. When you create a firewall, the operation initializes this setting to "TRUE". * **Description** *(string) --* A description of the firewall. * **FirewallId** *(string) --* The unique identifier for the firewall. * **Tags** *(list) --* * *(dict) --* A key:value pair associated with an Amazon Web Services resource. The key:value pair can be anything you define. Typically, the tag key represents a category (such as "environment") and the tag value represents a specific value within that category (such as "test," "development," or "production"). You can add up to 50 tags to each Amazon Web Services resource. * **Key** *(string) --* The part of the key:value pair that defines a tag. You can use a tag key to describe a category of information, such as "customer." Tag keys are case- sensitive. * **Value** *(string) --* The part of the key:value pair that defines a tag. You can use a tag value to describe a specific value within a category, such as "companyA" or "companyB." Tag values are case-sensitive. * **EncryptionConfiguration** *(dict) --* A complex type that contains the Amazon Web Services KMS encryption configuration settings for your firewall. * **KeyId** *(string) --* The ID of the Amazon Web Services Key Management Service (KMS) customer managed key. You can use any of the key identifiers that KMS supports, unless you're using a key that's managed by another account. If you're using a key managed by another account, then specify the key ARN. For more information, see Key ID in the *Amazon Web Services KMS Developer Guide*. * **Type** *(string) --* The type of Amazon Web Services KMS key to use for encryption of your Network Firewall resources. * **NumberOfAssociations** *(integer) --* The number of "VpcEndpointAssociation" resources that use this firewall. * **EnabledAnalysisTypes** *(list) --* An optional setting indicating the specific traffic analysis types to enable on the firewall. * *(string) --* * **TransitGatewayId** *(string) --* The unique identifier of the transit gateway associated with this firewall. This field is only present for transit gateway-attached firewalls. * **TransitGatewayOwnerAccountId** *(string) --* The Amazon Web Services account ID that owns the transit gateway. This may be different from the firewall owner's account ID when using a shared transit gateway. * **AvailabilityZoneMappings** *(list) --* The Availability Zones where the firewall endpoints are created for a transit gateway-attached firewall. Each mapping specifies an Availability Zone where the firewall processes traffic. * *(dict) --* Defines the mapping between an Availability Zone and a firewall endpoint for a transit gateway-attached firewall. Each mapping represents where the firewall can process traffic. You use these mappings when calling CreateFirewall, AssociateAvailabilityZones, and DisassociateAvailabilityZones. To retrieve the current Availability Zone mappings for a firewall, use DescribeFirewall. * **AvailabilityZone** *(string) --* The ID of the Availability Zone where the firewall endpoint is located. For example, "us-east-2a". The Availability Zone must be in the same Region as the transit gateway. * **AvailabilityZoneChangeProtection** *(boolean) --* A setting indicating whether the firewall is protected against changes to its Availability Zone configuration. When set to "TRUE", you must first disable this protection before adding or removing Availability Zones. * **FirewallStatus** *(dict) --* Detailed information about the current status of a Firewall. You can retrieve this for a firewall by calling DescribeFirewall and providing the firewall name and ARN. The firewall status indicates a combined status. It indicates whether all subnets are up-to-date with the latest firewall configurations, which is based on the sync states config values, and also whether all subnets have their endpoints fully enabled, based on their sync states attachment values. * **Status** *(string) --* The readiness of the configured firewall to handle network traffic across all of the Availability Zones where you have it configured. This setting is "READY" only when the "ConfigurationSyncStateSummary" value is "IN_SYNC" and the "Attachment" "Status" values for all of the configured subnets are "READY". * **ConfigurationSyncStateSummary** *(string) --* The configuration sync state for the firewall. This summarizes the "Config" settings in the "SyncStates" for this firewall status object. When you create a firewall or update its configuration, for example by adding a rule group to its firewall policy, Network Firewall distributes the configuration changes to all Availability Zones that have subnets defined for the firewall. This summary indicates whether the configuration changes have been applied everywhere. This status must be "IN_SYNC" for the firewall to be ready for use, but it doesn't indicate that the firewall is ready. The "Status" setting indicates firewall readiness. It's based on this setting and the readiness of the firewall endpoints to take traffic. * **SyncStates** *(dict) --* Status for the subnets that you've configured in the firewall. This contains one array element per Availability Zone where you've configured a subnet in the firewall. These objects provide detailed information for the settings "ConfigurationSyncStateSummary" and "Status". * *(string) --* * *(dict) --* The status of the firewall endpoint and firewall policy configuration for a single VPC subnet. This is part of the FirewallStatus. For each VPC subnet that you associate with a firewall, Network Firewall does the following: * Instantiates a firewall endpoint in the subnet, ready to take traffic. * Configures the endpoint with the current firewall policy settings, to provide the filtering behavior for the endpoint. When you update a firewall, for example to add a subnet association or change a rule group in the firewall policy, the affected sync states reflect out- of-sync or not ready status until the changes are complete. * **Attachment** *(dict) --* The configuration and status for a single firewall subnet. For each configured subnet, Network Firewall creates the attachment by instantiating the firewall endpoint in the subnet so that it's ready to take traffic. * **SubnetId** *(string) --* The unique identifier of the subnet that you've specified to be used for a firewall endpoint. * **EndpointId** *(string) --* The identifier of the firewall endpoint that Network Firewall has instantiated in the subnet. You use this to identify the firewall endpoint in the VPC route tables, when you redirect the VPC traffic through the endpoint. * **Status** *(string) --* The current status of the firewall endpoint instantiation in the subnet. When this value is "READY", the endpoint is available to handle network traffic. Otherwise, this value reflects its state, for example "CREATING" or "DELETING". * **StatusMessage** *(string) --* If Network Firewall fails to create or delete the firewall endpoint in the subnet, it populates this with the reason for the error or failure and how to resolve it. A "FAILED" status indicates a non- recoverable state, and a "ERROR" status indicates an issue that you can fix. Depending on the error, it can take as many as 15 minutes to populate this field. For more information about the causes for failiure or errors and solutions available for this field, see Troubleshooting firewall endpoint failures in the *Network Firewall Developer Guide*. * **Config** *(dict) --* The configuration status of the firewall endpoint in a single VPC subnet. Network Firewall provides each endpoint with the rules that are configured in the firewall policy. Each time you add a subnet or modify the associated firewall policy, Network Firewall synchronizes the rules in the endpoint, so it can properly filter network traffic. * *(string) --* * *(dict) --* Provides configuration status for a single policy or rule group that is used for a firewall endpoint. Network Firewall provides each endpoint with the rules that are configured in the firewall policy. Each time you add a subnet or modify the associated firewall policy, Network Firewall synchronizes the rules in the endpoint, so it can properly filter network traffic. This is part of a SyncState for a firewall. * **SyncStatus** *(string) --* Indicates whether this object is in sync with the version indicated in the update token. * **UpdateToken** *(string) --* The current version of the object that is either in sync or pending synchronization. * **CapacityUsageSummary** *(dict) --* Describes the capacity usage of the resources contained in a firewall's reference sets. Network Firewall calculates the capacity usage by taking an aggregated count of all of the resources used by all of the reference sets in a firewall. * **CIDRs** *(dict) --* Describes the capacity usage of the CIDR blocks used by the IP set references in a firewall. * **AvailableCIDRCount** *(integer) --* The number of CIDR blocks available for use by the IP set references in a firewall. * **UtilizedCIDRCount** *(integer) --* The number of CIDR blocks used by the IP set references in a firewall. * **IPSetReferences** *(dict) --* The list of the IP set references used by a firewall. * *(string) --* * *(dict) --* General information about the IP set. * **ResolvedCIDRCount** *(integer) --* Describes the total number of CIDR blocks currently in use by the IP set references in a firewall. To determine how many CIDR blocks are available for you to use in a firewall, you can call "AvailableCIDRCount". * **TransitGatewayAttachmentSyncState** *(dict) --* The synchronization state of the transit gateway attachment. This indicates whether the firewall's transit gateway configuration is properly synchronized and operational. Use this to verify that your transit gateway configuration changes have been applied. * **AttachmentId** *(string) --* The unique identifier of the transit gateway attachment. * **TransitGatewayAttachmentStatus** *(string) --* The current status of the transit gateway attachment. Valid values are: * "CREATING" - The attachment is being created * "DELETING" - The attachment is being deleted * "DELETED" - The attachment has been deleted * "FAILED" - The attachment creation has failed and cannot be recovered * "ERROR" - The attachment is in an error state that might be recoverable * "READY" - The attachment is active and processing traffic * "PENDING_ACCEPTANCE" - The attachment is waiting to be accepted * "REJECTING" - The attachment is in the process of being rejected * "REJECTED" - The attachment has been rejected * **StatusMessage** *(string) --* A message providing additional information about the current status, particularly useful when the transit gateway attachment is in a non- "READY" state. Valid values are: * "CREATING" - The attachment is being created * "DELETING" - The attachment is being deleted * "DELETED" - The attachment has been deleted * "FAILED" - The attachment creation has failed and cannot be recovered * "ERROR" - The attachment is in an error state that might be recoverable * "READY" - The attachment is active and processing traffic * "PENDING_ACCEPTANCE" - The attachment is waiting to be accepted * "REJECTING" - The attachment is in the process of being rejected * "REJECTED" - The attachment has been rejected For information about troubleshooting endpoint failures, see Troubleshooting firewall endpoint failures in the *Network Firewall Developer Guide*. **Exceptions** * "NetworkFirewall.Client.exceptions.InvalidRequestException" * "NetworkFirewall.Client.exceptions.InternalServerError" * "NetworkFirewall.Client.exceptions.ResourceNotFoundException" * "NetworkFirewall.Client.exceptions.ThrottlingException" * "NetworkFirewall.Client.exceptions.UnsupportedOperationException" * "NetworkFirewall.Client.exceptions.InvalidOperationException" NetworkFirewall / Client / list_flow_operations list_flow_operations ******************** NetworkFirewall.Client.list_flow_operations(**kwargs) Returns a list of all flow operations ran in a specific firewall. You can optionally narrow the request scope by specifying the operation type or Availability Zone associated with a firewall's flow operations. Flow operations let you manage the flows tracked in the flow table, also known as the firewall table. A flow is network traffic that is monitored by a firewall, either by stateful or stateless rules. For traffic to be considered part of a flow, it must share Destination, DestinationPort, Direction, Protocol, Source, and SourcePort. See also: AWS API Documentation **Request Syntax** response = client.list_flow_operations( FirewallArn='string', AvailabilityZone='string', VpcEndpointAssociationArn='string', VpcEndpointId='string', FlowOperationType='FLOW_FLUSH'|'FLOW_CAPTURE', NextToken='string', MaxResults=123 ) Parameters: * **FirewallArn** (*string*) -- **[REQUIRED]** The Amazon Resource Name (ARN) of the firewall. * **AvailabilityZone** (*string*) -- The ID of the Availability Zone where the firewall is located. For example, "us-east-2a". Defines the scope a flow operation. You can use up to 20 filters to configure a single flow operation. * **VpcEndpointAssociationArn** (*string*) -- The Amazon Resource Name (ARN) of a VPC endpoint association. * **VpcEndpointId** (*string*) -- A unique identifier for the primary endpoint associated with a firewall. * **FlowOperationType** (*string*) -- An optional string that defines whether any or all operation types are returned. * **NextToken** (*string*) -- When you request a list of objects with a "MaxResults" setting, if the number of objects that are still available for retrieval exceeds the maximum you requested, Network Firewall returns a "NextToken" value in the response. To retrieve the next batch of objects, use the token returned from the prior request in your next request. * **MaxResults** (*integer*) -- The maximum number of objects that you want Network Firewall to return for this request. If more objects are available, in the response, Network Firewall provides a "NextToken" value that you can use in a subsequent call to get the next batch of objects. Return type: dict Returns: **Response Syntax** { 'FlowOperations': [ { 'FlowOperationId': 'string', 'FlowOperationType': 'FLOW_FLUSH'|'FLOW_CAPTURE', 'FlowRequestTimestamp': datetime(2015, 1, 1), 'FlowOperationStatus': 'COMPLETED'|'IN_PROGRESS'|'FAILED'|'COMPLETED_WITH_ERRORS' }, ], 'NextToken': 'string' } **Response Structure** * *(dict) --* * **FlowOperations** *(list) --* Flow operations let you manage the flows tracked in the flow table, also known as the firewall table. A flow is network traffic that is monitored by a firewall, either by stateful or stateless rules. For traffic to be considered part of a flow, it must share Destination, DestinationPort, Direction, Protocol, Source, and SourcePort. * *(dict) --* An array of objects with metadata about the requested "FlowOperation". * **FlowOperationId** *(string) --* A unique identifier for the flow operation. This ID is returned in the responses to start and list commands. You provide to describe commands. * **FlowOperationType** *(string) --* Defines the type of "FlowOperation". * **FlowRequestTimestamp** *(datetime) --* A timestamp indicating when the Suricata engine identified flows impacted by an operation. * **FlowOperationStatus** *(string) --* Returns the status of the flow operation. This string is returned in the responses to start, list, and describe commands. If the status is "COMPLETED_WITH_ERRORS", results may be returned with any number of "Flows" missing from the response. If the status is "FAILED", "Flows" returned will be empty. * **NextToken** *(string) --* When you request a list of objects with a "MaxResults" setting, if the number of objects that are still available for retrieval exceeds the maximum you requested, Network Firewall returns a "NextToken" value in the response. To retrieve the next batch of objects, use the token returned from the prior request in your next request. **Exceptions** * "NetworkFirewall.Client.exceptions.InvalidRequestException" * "NetworkFirewall.Client.exceptions.InternalServerError" * "NetworkFirewall.Client.exceptions.ResourceNotFoundException" * "NetworkFirewall.Client.exceptions.ThrottlingException" NetworkFirewall / Client / update_firewall_policy update_firewall_policy ********************** NetworkFirewall.Client.update_firewall_policy(**kwargs) Updates the properties of the specified firewall policy. See also: AWS API Documentation **Request Syntax** response = client.update_firewall_policy( UpdateToken='string', FirewallPolicyArn='string', FirewallPolicyName='string', FirewallPolicy={ 'StatelessRuleGroupReferences': [ { 'ResourceArn': 'string', 'Priority': 123 }, ], 'StatelessDefaultActions': [ 'string', ], 'StatelessFragmentDefaultActions': [ 'string', ], 'StatelessCustomActions': [ { 'ActionName': 'string', 'ActionDefinition': { 'PublishMetricAction': { 'Dimensions': [ { 'Value': 'string' }, ] } } }, ], 'StatefulRuleGroupReferences': [ { 'ResourceArn': 'string', 'Priority': 123, 'Override': { 'Action': 'DROP_TO_ALERT' }, 'DeepThreatInspection': True|False }, ], 'StatefulDefaultActions': [ 'string', ], 'StatefulEngineOptions': { 'RuleOrder': 'DEFAULT_ACTION_ORDER'|'STRICT_ORDER', 'StreamExceptionPolicy': 'DROP'|'CONTINUE'|'REJECT', 'FlowTimeouts': { 'TcpIdleTimeoutSeconds': 123 } }, 'TLSInspectionConfigurationArn': 'string', 'PolicyVariables': { 'RuleVariables': { 'string': { 'Definition': [ 'string', ] } } } }, Description='string', DryRun=True|False, EncryptionConfiguration={ 'KeyId': 'string', 'Type': 'CUSTOMER_KMS'|'AWS_OWNED_KMS_KEY' } ) Parameters: * **UpdateToken** (*string*) -- **[REQUIRED]** A token used for optimistic locking. Network Firewall returns a token to your requests that access the firewall policy. The token marks the state of the policy resource at the time of the request. To make changes to the policy, you provide the token in your request. Network Firewall uses the token to ensure that the policy hasn't changed since you last retrieved it. If it has changed, the operation fails with an "InvalidTokenException". If this happens, retrieve the firewall policy again to get a current copy of it with current token. Reapply your changes as needed, then try the operation again using the new token. * **FirewallPolicyArn** (*string*) -- The Amazon Resource Name (ARN) of the firewall policy. You must specify the ARN or the name, and you can specify both. * **FirewallPolicyName** (*string*) -- The descriptive name of the firewall policy. You can't change the name of a firewall policy after you create it. You must specify the ARN or the name, and you can specify both. * **FirewallPolicy** (*dict*) -- **[REQUIRED]** The updated firewall policy to use for the firewall. You can't add or remove a TLSInspectionConfiguration after you create a firewall policy. However, you can replace an existing TLS inspection configuration with another "TLSInspectionConfiguration". * **StatelessRuleGroupReferences** *(list) --* References to the stateless rule groups that are used in the policy. These define the matching criteria in stateless rules. * *(dict) --* Identifier for a single stateless rule group, used in a firewall policy to refer to the rule group. * **ResourceArn** *(string) --* **[REQUIRED]** The Amazon Resource Name (ARN) of the stateless rule group. * **Priority** *(integer) --* **[REQUIRED]** An integer setting that indicates the order in which to run the stateless rule groups in a single FirewallPolicy. Network Firewall applies each stateless rule group to a packet starting with the group that has the lowest priority setting. You must ensure that the priority settings are unique within each policy. * **StatelessDefaultActions** *(list) --* **[REQUIRED]** The actions to take on a packet if it doesn't match any of the stateless rules in the policy. If you want non-matching packets to be forwarded for stateful inspection, specify "aws:forward_to_sfe". You must specify one of the standard actions: "aws:pass", "aws:drop", or "aws:forward_to_sfe". In addition, you can specify custom actions that are compatible with your standard section choice. For example, you could specify "["aws:pass"]" or you could specify "["aws:pass", “customActionName”]". For information about compatibility, see the custom action descriptions under CustomAction. * *(string) --* * **StatelessFragmentDefaultActions** *(list) --* **[REQUIRED]** The actions to take on a fragmented UDP packet if it doesn't match any of the stateless rules in the policy. Network Firewall only manages UDP packet fragments and silently drops packet fragments for other protocols. If you want non- matching fragmented UDP packets to be forwarded for stateful inspection, specify "aws:forward_to_sfe". You must specify one of the standard actions: "aws:pass", "aws:drop", or "aws:forward_to_sfe". In addition, you can specify custom actions that are compatible with your standard section choice. For example, you could specify "["aws:pass"]" or you could specify "["aws:pass", “customActionName”]". For information about compatibility, see the custom action descriptions under CustomAction. * *(string) --* * **StatelessCustomActions** *(list) --* The custom action definitions that are available for use in the firewall policy's "StatelessDefaultActions" setting. You name each custom action that you define, and then you can use it by name in your default actions specifications. * *(dict) --* An optional, non-standard action to use for stateless packet handling. You can define this in addition to the standard action that you must specify. You define and name the custom actions that you want to be able to use, and then you reference them by name in your actions settings. You can use custom actions in the following places: * In a rule group's StatelessRulesAndCustomActions specification. The custom actions are available for use by name inside the "StatelessRulesAndCustomActions" where you define them. You can use them for your stateless rule actions to specify what to do with a packet that matches the rule's match attributes. * In a FirewallPolicy specification, in "StatelessCustomActions". The custom actions are available for use inside the policy where you define them. You can use them for the policy's default stateless actions settings to specify what to do with packets that don't match any of the policy's stateless rules. * **ActionName** *(string) --* **[REQUIRED]** The descriptive name of the custom action. You can't change the name of a custom action after you create it. * **ActionDefinition** *(dict) --* **[REQUIRED]** The custom action associated with the action name. * **PublishMetricAction** *(dict) --* Stateless inspection criteria that publishes the specified metrics to Amazon CloudWatch for the matching packet. This setting defines a CloudWatch dimension value to be published. You can pair this custom action with any of the standard stateless rule actions. For example, you could pair this in a rule action with the standard action that forwards the packet for stateful inspection. Then, when a packet matches the rule, Network Firewall publishes metrics for the packet and forwards it. * **Dimensions** *(list) --* **[REQUIRED]** * *(dict) --* The value to use in an Amazon CloudWatch custom metric dimension. This is used in the "PublishMetrics" CustomAction. A CloudWatch custom metric dimension is a name/value pair that's part of the identity of a metric. Network Firewall sets the dimension name to "CustomAction" and you provide the dimension value. For more information about CloudWatch custom metric dimensions, see Publishing Custom Metrics in the Amazon CloudWatch User Guide. * **Value** *(string) --* **[REQUIRED]** The value to use in the custom metric dimension. * **StatefulRuleGroupReferences** *(list) --* References to the stateful rule groups that are used in the policy. These define the inspection criteria in stateful rules. * *(dict) --* Identifier for a single stateful rule group, used in a firewall policy to refer to a rule group. * **ResourceArn** *(string) --* **[REQUIRED]** The Amazon Resource Name (ARN) of the stateful rule group. * **Priority** *(integer) --* An integer setting that indicates the order in which to run the stateful rule groups in a single FirewallPolicy. This setting only applies to firewall policies that specify the "STRICT_ORDER" rule order in the stateful engine options settings. Network Firewall evalutes each stateful rule group against a packet starting with the group that has the lowest priority setting. You must ensure that the priority settings are unique within each policy. You can change the priority settings of your rule groups at any time. To make it easier to insert rule groups later, number them so there's a wide range in between, for example use 100, 200, and so on. * **Override** *(dict) --* The action that allows the policy owner to override the behavior of the rule group within a policy. * **Action** *(string) --* The action that changes the rule group from "DROP" to "ALERT". This only applies to managed rule groups. * **DeepThreatInspection** *(boolean) --* Network Firewall plans to augment the active threat defense managed rule group with an additional deep threat inspection capability. When this capability is released, Amazon Web Services will analyze service logs of network traffic processed by these rule groups to identify threat indicators across customers. Amazon Web Services will use these threat indicators to improve the active threat defense managed rule groups and protect the security of Amazon Web Services customers and services. Note: Customers can opt-out of deep threat inspection at any time through the Network Firewall console or API. When customers opt out, Network Firewall will not use the network traffic processed by those customers' active threat defense rule groups for rule group improvement. * **StatefulDefaultActions** *(list) --* The default actions to take on a packet that doesn't match any stateful rules. The stateful default action is optional, and is only valid when using the strict rule order. Valid values of the stateful default action: * aws:drop_strict * aws:drop_established * aws:alert_strict * aws:alert_established For more information, see Strict evaluation order in the *Network Firewall Developer Guide*. * *(string) --* * **StatefulEngineOptions** *(dict) --* Additional options governing how Network Firewall handles stateful rules. The stateful rule groups that you use in your policy must have stateful rule options settings that are compatible with these settings. * **RuleOrder** *(string) --* Indicates how to manage the order of stateful rule evaluation for the policy. "STRICT_ORDER" is the recommended option, but "DEFAULT_ACTION_ORDER" is the default option. With "STRICT_ORDER", provide your rules in the order that you want them to be evaluated. You can then choose one or more default actions for packets that don't match any rules. Choose "STRICT_ORDER" to have the stateful rules engine determine the evaluation order of your rules. The default action for this rule order is "PASS", followed by "DROP", "REJECT", and "ALERT" actions. Stateful rules are provided to the rule engine as Suricata compatible strings, and Suricata evaluates them based on your settings. For more information, see Evaluation order for stateful rules in the *Network Firewall Developer Guide*. * **StreamExceptionPolicy** *(string) --* Configures how Network Firewall processes traffic when a network connection breaks midstream. Network connections can break due to disruptions in external networks or within the firewall itself. * "DROP" - Network Firewall fails closed and drops all subsequent traffic going to the firewall. This is the default behavior. * "CONTINUE" - Network Firewall continues to apply rules to the subsequent traffic without context from traffic before the break. This impacts the behavior of rules that depend on this context. For example, if you have a stateful rule to "drop http" traffic, Network Firewall won't match the traffic for this rule because the service won't have the context from session initialization defining the application layer protocol as HTTP. However, this behavior is rule dependent—a TCP- layer rule using a "flow:stateless" rule would still match, as would the "aws:drop_strict" default action. * "REJECT" - Network Firewall fails closed and drops all subsequent traffic going to the firewall. Network Firewall also sends a TCP reject packet back to your client so that the client can immediately establish a new session. Network Firewall will have context about the new session and will apply rules to the subsequent traffic. * **FlowTimeouts** *(dict) --* Configures the amount of time that can pass without any traffic sent through the firewall before the firewall determines that the connection is idle. * **TcpIdleTimeoutSeconds** *(integer) --* The number of seconds that can pass without any TCP traffic sent through the firewall before the firewall determines that the connection is idle. After the idle timeout passes, data packets are dropped, however, the next TCP SYN packet is considered a new flow and is processed by the firewall. Clients or targets can use TCP keepalive packets to reset the idle timeout. You can define the "TcpIdleTimeoutSeconds" value to be between 60 and 6000 seconds. If no value is provided, it defaults to 350 seconds. * **TLSInspectionConfigurationArn** *(string) --* The Amazon Resource Name (ARN) of the TLS inspection configuration. * **PolicyVariables** *(dict) --* Contains variables that you can use to override default Suricata settings in your firewall policy. * **RuleVariables** *(dict) --* The IPv4 or IPv6 addresses in CIDR notation to use for the Suricata "HOME_NET" variable. If your firewall uses an inspection VPC, you might want to override the "HOME_NET" variable with the CIDRs of your home networks. If you don't override "HOME_NET" with your own CIDRs, Network Firewall by default uses the CIDR of your inspection VPC. * *(string) --* * *(dict) --* A list of IP addresses and address ranges, in CIDR notation. This is part of a RuleVariables. * **Definition** *(list) --* **[REQUIRED]** The list of IP addresses and address ranges, in CIDR notation. * *(string) --* * **Description** (*string*) -- A description of the firewall policy. * **DryRun** (*boolean*) -- Indicates whether you want Network Firewall to just check the validity of the request, rather than run the request. If set to "TRUE", Network Firewall checks whether the request can run successfully, but doesn't actually make the requested changes. The call returns the value that the request would return if you ran it with dry run set to "FALSE", but doesn't make additions or changes to your resources. This option allows you to make sure that you have the required permissions to run the request and that your request parameters are valid. If set to "FALSE", Network Firewall makes the requested changes to your resources. * **EncryptionConfiguration** (*dict*) -- A complex type that contains settings for encryption of your firewall policy resources. * **KeyId** *(string) --* The ID of the Amazon Web Services Key Management Service (KMS) customer managed key. You can use any of the key identifiers that KMS supports, unless you're using a key that's managed by another account. If you're using a key managed by another account, then specify the key ARN. For more information, see Key ID in the *Amazon Web Services KMS Developer Guide*. * **Type** *(string) --* **[REQUIRED]** The type of Amazon Web Services KMS key to use for encryption of your Network Firewall resources. Return type: dict Returns: **Response Syntax** { 'UpdateToken': 'string', 'FirewallPolicyResponse': { 'FirewallPolicyName': 'string', 'FirewallPolicyArn': 'string', 'FirewallPolicyId': 'string', 'Description': 'string', 'FirewallPolicyStatus': 'ACTIVE'|'DELETING'|'ERROR', 'Tags': [ { 'Key': 'string', 'Value': 'string' }, ], 'ConsumedStatelessRuleCapacity': 123, 'ConsumedStatefulRuleCapacity': 123, 'NumberOfAssociations': 123, 'EncryptionConfiguration': { 'KeyId': 'string', 'Type': 'CUSTOMER_KMS'|'AWS_OWNED_KMS_KEY' }, 'LastModifiedTime': datetime(2015, 1, 1) } } **Response Structure** * *(dict) --* * **UpdateToken** *(string) --* A token used for optimistic locking. Network Firewall returns a token to your requests that access the firewall policy. The token marks the state of the policy resource at the time of the request. To make changes to the policy, you provide the token in your request. Network Firewall uses the token to ensure that the policy hasn't changed since you last retrieved it. If it has changed, the operation fails with an "InvalidTokenException". If this happens, retrieve the firewall policy again to get a current copy of it with current token. Reapply your changes as needed, then try the operation again using the new token. * **FirewallPolicyResponse** *(dict) --* The high-level properties of a firewall policy. This, along with the FirewallPolicy, define the policy. You can retrieve all objects for a firewall policy by calling DescribeFirewallPolicy. * **FirewallPolicyName** *(string) --* The descriptive name of the firewall policy. You can't change the name of a firewall policy after you create it. * **FirewallPolicyArn** *(string) --* The Amazon Resource Name (ARN) of the firewall policy. Note: If this response is for a create request that had "DryRun" set to "TRUE", then this ARN is a placeholder that isn't attached to a valid resource. * **FirewallPolicyId** *(string) --* The unique identifier for the firewall policy. * **Description** *(string) --* A description of the firewall policy. * **FirewallPolicyStatus** *(string) --* The current status of the firewall policy. You can retrieve this for a firewall policy by calling DescribeFirewallPolicy and providing the firewall policy's name or ARN. * **Tags** *(list) --* The key:value pairs to associate with the resource. * *(dict) --* A key:value pair associated with an Amazon Web Services resource. The key:value pair can be anything you define. Typically, the tag key represents a category (such as "environment") and the tag value represents a specific value within that category (such as "test," "development," or "production"). You can add up to 50 tags to each Amazon Web Services resource. * **Key** *(string) --* The part of the key:value pair that defines a tag. You can use a tag key to describe a category of information, such as "customer." Tag keys are case- sensitive. * **Value** *(string) --* The part of the key:value pair that defines a tag. You can use a tag value to describe a specific value within a category, such as "companyA" or "companyB." Tag values are case-sensitive. * **ConsumedStatelessRuleCapacity** *(integer) --* The number of capacity units currently consumed by the policy's stateless rules. * **ConsumedStatefulRuleCapacity** *(integer) --* The number of capacity units currently consumed by the policy's stateful rules. * **NumberOfAssociations** *(integer) --* The number of firewalls that are associated with this firewall policy. * **EncryptionConfiguration** *(dict) --* A complex type that contains the Amazon Web Services KMS encryption configuration settings for your firewall policy. * **KeyId** *(string) --* The ID of the Amazon Web Services Key Management Service (KMS) customer managed key. You can use any of the key identifiers that KMS supports, unless you're using a key that's managed by another account. If you're using a key managed by another account, then specify the key ARN. For more information, see Key ID in the *Amazon Web Services KMS Developer Guide*. * **Type** *(string) --* The type of Amazon Web Services KMS key to use for encryption of your Network Firewall resources. * **LastModifiedTime** *(datetime) --* The last time that the firewall policy was changed. **Exceptions** * "NetworkFirewall.Client.exceptions.InvalidRequestException" * "NetworkFirewall.Client.exceptions.ResourceNotFoundException" * "NetworkFirewall.Client.exceptions.ThrottlingException" * "NetworkFirewall.Client.exceptions.InternalServerError" * "NetworkFirewall.Client.exceptions.InvalidTokenException" NetworkFirewall / Client / start_flow_capture start_flow_capture ****************** NetworkFirewall.Client.start_flow_capture(**kwargs) Begins capturing the flows in a firewall, according to the filters you define. Captures are similar, but not identical to snapshots. Capture operations provide visibility into flows that are not closed and are tracked by a firewall's flow table. Unlike snapshots, captures are a time-boxed view. A flow is network traffic that is monitored by a firewall, either by stateful or stateless rules. For traffic to be considered part of a flow, it must share Destination, DestinationPort, Direction, Protocol, Source, and SourcePort. Note: To avoid encountering operation limits, you should avoid starting captures with broad filters, like wide IP ranges. Instead, we recommend you define more specific criteria with "FlowFilters", like narrow IP ranges, ports, or protocols. See also: AWS API Documentation **Request Syntax** response = client.start_flow_capture( FirewallArn='string', AvailabilityZone='string', VpcEndpointAssociationArn='string', VpcEndpointId='string', MinimumFlowAgeInSeconds=123, FlowFilters=[ { 'SourceAddress': { 'AddressDefinition': 'string' }, 'DestinationAddress': { 'AddressDefinition': 'string' }, 'SourcePort': 'string', 'DestinationPort': 'string', 'Protocols': [ 'string', ] }, ] ) Parameters: * **FirewallArn** (*string*) -- **[REQUIRED]** The Amazon Resource Name (ARN) of the firewall. * **AvailabilityZone** (*string*) -- The ID of the Availability Zone where the firewall is located. For example, "us-east-2a". Defines the scope a flow operation. You can use up to 20 filters to configure a single flow operation. * **VpcEndpointAssociationArn** (*string*) -- The Amazon Resource Name (ARN) of a VPC endpoint association. * **VpcEndpointId** (*string*) -- A unique identifier for the primary endpoint associated with a firewall. * **MinimumFlowAgeInSeconds** (*integer*) -- The reqested "FlowOperation" ignores flows with an age (in seconds) lower than "MinimumFlowAgeInSeconds". You provide this for start commands. Note: We recommend setting this value to at least 1 minute (60 seconds) to reduce chance of capturing flows that are not yet established. * **FlowFilters** (*list*) -- **[REQUIRED]** Defines the scope a flow operation. You can use up to 20 filters to configure a single flow operation. * *(dict) --* Defines the scope a flow operation. You can use up to 20 filters to configure a single flow operation. * **SourceAddress** *(dict) --* A single IP address specification. This is used in the MatchAttributes source and destination specifications. * **AddressDefinition** *(string) --* **[REQUIRED]** Specify an IP address or a block of IP addresses in Classless Inter-Domain Routing (CIDR) notation. Network Firewall supports all address ranges for IPv4 and IPv6. Examples: * To configure Network Firewall to inspect for the IP address 192.0.2.44, specify "192.0.2.44/32". * To configure Network Firewall to inspect for IP addresses from 192.0.2.0 to 192.0.2.255, specify "192.0.2.0/24". * To configure Network Firewall to inspect for the IP address 1111:0000:0000:0000:0000:0000:0000:0111, specify "1111:0000:0000:0000:0000:0000:0000:0111/128". * To configure Network Firewall to inspect for IP addresses from 1111:0000:0000:0000:0000:0000:0000:0000 to 1111:0000:0000:0000:ffff:ffff:ffff:ffff, specify "1111:0000:0000:0000:0000:0000:0000:0000/64". For more information about CIDR notation, see the Wikipedia entry Classless Inter-Domain Routing. * **DestinationAddress** *(dict) --* A single IP address specification. This is used in the MatchAttributes source and destination specifications. * **AddressDefinition** *(string) --* **[REQUIRED]** Specify an IP address or a block of IP addresses in Classless Inter-Domain Routing (CIDR) notation. Network Firewall supports all address ranges for IPv4 and IPv6. Examples: * To configure Network Firewall to inspect for the IP address 192.0.2.44, specify "192.0.2.44/32". * To configure Network Firewall to inspect for IP addresses from 192.0.2.0 to 192.0.2.255, specify "192.0.2.0/24". * To configure Network Firewall to inspect for the IP address 1111:0000:0000:0000:0000:0000:0000:0111, specify "1111:0000:0000:0000:0000:0000:0000:0111/128". * To configure Network Firewall to inspect for IP addresses from 1111:0000:0000:0000:0000:0000:0000:0000 to 1111:0000:0000:0000:ffff:ffff:ffff:ffff, specify "1111:0000:0000:0000:0000:0000:0000:0000/64". For more information about CIDR notation, see the Wikipedia entry Classless Inter-Domain Routing. * **SourcePort** *(string) --* The source port to inspect for. You can specify an individual port, for example "1994" and you can specify a port range, for example "1990:1994". To match with any port, specify "ANY". * **DestinationPort** *(string) --* The destination port to inspect for. You can specify an individual port, for example "1994" and you can specify a port range, for example "1990:1994". To match with any port, specify "ANY". * **Protocols** *(list) --* The protocols to inspect for, specified using the assigned internet protocol number (IANA) for each protocol. If not specified, this matches with any protocol. * *(string) --* Return type: dict Returns: **Response Syntax** { 'FirewallArn': 'string', 'FlowOperationId': 'string', 'FlowOperationStatus': 'COMPLETED'|'IN_PROGRESS'|'FAILED'|'COMPLETED_WITH_ERRORS' } **Response Structure** * *(dict) --* * **FirewallArn** *(string) --* The Amazon Resource Name (ARN) of the firewall. * **FlowOperationId** *(string) --* A unique identifier for the flow operation. This ID is returned in the responses to start and list commands. You provide to describe commands. * **FlowOperationStatus** *(string) --* Returns the status of the flow operation. This string is returned in the responses to start, list, and describe commands. If the status is "COMPLETED_WITH_ERRORS", results may be returned with any number of "Flows" missing from the response. If the status is "FAILED", "Flows" returned will be empty. **Exceptions** * "NetworkFirewall.Client.exceptions.InvalidRequestException" * "NetworkFirewall.Client.exceptions.InternalServerError" * "NetworkFirewall.Client.exceptions.ResourceNotFoundException" * "NetworkFirewall.Client.exceptions.ThrottlingException" NetworkFirewall / Client / list_flow_operation_results list_flow_operation_results *************************** NetworkFirewall.Client.list_flow_operation_results(**kwargs) Returns the results of a specific flow operation. Flow operations let you manage the flows tracked in the flow table, also known as the firewall table. A flow is network traffic that is monitored by a firewall, either by stateful or stateless rules. For traffic to be considered part of a flow, it must share Destination, DestinationPort, Direction, Protocol, Source, and SourcePort. See also: AWS API Documentation **Request Syntax** response = client.list_flow_operation_results( FirewallArn='string', FlowOperationId='string', NextToken='string', MaxResults=123, AvailabilityZone='string', VpcEndpointId='string', VpcEndpointAssociationArn='string' ) Parameters: * **FirewallArn** (*string*) -- **[REQUIRED]** The Amazon Resource Name (ARN) of the firewall. * **FlowOperationId** (*string*) -- **[REQUIRED]** A unique identifier for the flow operation. This ID is returned in the responses to start and list commands. You provide to describe commands. * **NextToken** (*string*) -- When you request a list of objects with a "MaxResults" setting, if the number of objects that are still available for retrieval exceeds the maximum you requested, Network Firewall returns a "NextToken" value in the response. To retrieve the next batch of objects, use the token returned from the prior request in your next request. * **MaxResults** (*integer*) -- The maximum number of objects that you want Network Firewall to return for this request. If more objects are available, in the response, Network Firewall provides a "NextToken" value that you can use in a subsequent call to get the next batch of objects. * **AvailabilityZone** (*string*) -- The ID of the Availability Zone where the firewall is located. For example, "us-east-2a". Defines the scope a flow operation. You can use up to 20 filters to configure a single flow operation. * **VpcEndpointId** (*string*) -- A unique identifier for the primary endpoint associated with a firewall. * **VpcEndpointAssociationArn** (*string*) -- The Amazon Resource Name (ARN) of a VPC endpoint association. Return type: dict Returns: **Response Syntax** { 'FirewallArn': 'string', 'AvailabilityZone': 'string', 'VpcEndpointAssociationArn': 'string', 'VpcEndpointId': 'string', 'FlowOperationId': 'string', 'FlowOperationStatus': 'COMPLETED'|'IN_PROGRESS'|'FAILED'|'COMPLETED_WITH_ERRORS', 'StatusMessage': 'string', 'FlowRequestTimestamp': datetime(2015, 1, 1), 'Flows': [ { 'SourceAddress': { 'AddressDefinition': 'string' }, 'DestinationAddress': { 'AddressDefinition': 'string' }, 'SourcePort': 'string', 'DestinationPort': 'string', 'Protocol': 'string', 'Age': 123, 'PacketCount': 123, 'ByteCount': 123 }, ], 'NextToken': 'string' } **Response Structure** * *(dict) --* * **FirewallArn** *(string) --* The Amazon Resource Name (ARN) of the firewall. * **AvailabilityZone** *(string) --* The ID of the Availability Zone where the firewall is located. For example, "us-east-2a". Defines the scope a flow operation. You can use up to 20 filters to configure a single flow operation. * **VpcEndpointAssociationArn** *(string) --* * **VpcEndpointId** *(string) --* * **FlowOperationId** *(string) --* A unique identifier for the flow operation. This ID is returned in the responses to start and list commands. You provide to describe commands. * **FlowOperationStatus** *(string) --* Returns the status of the flow operation. This string is returned in the responses to start, list, and describe commands. If the status is "COMPLETED_WITH_ERRORS", results may be returned with any number of "Flows" missing from the response. If the status is "FAILED", "Flows" returned will be empty. * **StatusMessage** *(string) --* If the asynchronous operation fails, Network Firewall populates this with the reason for the error or failure. Options include "Flow operation error" and "Flow timeout". * **FlowRequestTimestamp** *(datetime) --* A timestamp indicating when the Suricata engine identified flows impacted by an operation. * **Flows** *(list) --* Any number of arrays, where each array is a single flow identified in the scope of the operation. If multiple flows were in the scope of the operation, multiple "Flows" arrays are returned. * *(dict) --* Any number of arrays, where each array is a single flow identified in the scope of the operation. If multiple flows were in the scope of the operation, multiple "Flows" arrays are returned. * **SourceAddress** *(dict) --* A single IP address specification. This is used in the MatchAttributes source and destination specifications. * **AddressDefinition** *(string) --* Specify an IP address or a block of IP addresses in Classless Inter-Domain Routing (CIDR) notation. Network Firewall supports all address ranges for IPv4 and IPv6. Examples: * To configure Network Firewall to inspect for the IP address 192.0.2.44, specify "192.0.2.44/32". * To configure Network Firewall to inspect for IP addresses from 192.0.2.0 to 192.0.2.255, specify "192.0.2.0/24". * To configure Network Firewall to inspect for the IP address 1111:0000:0000:0000:0000:0000:0000:0111, specify "1111:0000:0000:0000:0000:0000:0000:0111/128". * To configure Network Firewall to inspect for IP addresses from 1111:0000:0000:0000:0000:0000:0000:0000 to 1111:0000:0000:0000:ffff:ffff:ffff:ffff, specify "1111:0000:0000:0000:0000:0000:0000:0000/64". For more information about CIDR notation, see the Wikipedia entry Classless Inter-Domain Routing. * **DestinationAddress** *(dict) --* A single IP address specification. This is used in the MatchAttributes source and destination specifications. * **AddressDefinition** *(string) --* Specify an IP address or a block of IP addresses in Classless Inter-Domain Routing (CIDR) notation. Network Firewall supports all address ranges for IPv4 and IPv6. Examples: * To configure Network Firewall to inspect for the IP address 192.0.2.44, specify "192.0.2.44/32". * To configure Network Firewall to inspect for IP addresses from 192.0.2.0 to 192.0.2.255, specify "192.0.2.0/24". * To configure Network Firewall to inspect for the IP address 1111:0000:0000:0000:0000:0000:0000:0111, specify "1111:0000:0000:0000:0000:0000:0000:0111/128". * To configure Network Firewall to inspect for IP addresses from 1111:0000:0000:0000:0000:0000:0000:0000 to 1111:0000:0000:0000:ffff:ffff:ffff:ffff, specify "1111:0000:0000:0000:0000:0000:0000:0000/64". For more information about CIDR notation, see the Wikipedia entry Classless Inter-Domain Routing. * **SourcePort** *(string) --* The source port to inspect for. You can specify an individual port, for example "1994" and you can specify a port range, for example "1990:1994". To match with any port, specify "ANY". * **DestinationPort** *(string) --* The destination port to inspect for. You can specify an individual port, for example "1994" and you can specify a port range, for example "1990:1994". To match with any port, specify "ANY". * **Protocol** *(string) --* The protocols to inspect for, specified using the assigned internet protocol number (IANA) for each protocol. If not specified, this matches with any protocol. * **Age** *(integer) --* Returned as info about age of the flows identified by the flow operation. * **PacketCount** *(integer) --* Returns the total number of data packets received or transmitted in a flow. * **ByteCount** *(integer) --* Returns the number of bytes received or transmitted in a specific flow. * **NextToken** *(string) --* When you request a list of objects with a "MaxResults" setting, if the number of objects that are still available for retrieval exceeds the maximum you requested, Network Firewall returns a "NextToken" value in the response. To retrieve the next batch of objects, use the token returned from the prior request in your next request. **Exceptions** * "NetworkFirewall.Client.exceptions.InvalidRequestException" * "NetworkFirewall.Client.exceptions.InternalServerError" * "NetworkFirewall.Client.exceptions.ResourceNotFoundException" * "NetworkFirewall.Client.exceptions.ThrottlingException" NetworkFirewall / Client / start_flow_flush start_flow_flush **************** NetworkFirewall.Client.start_flow_flush(**kwargs) Begins the flushing of traffic from the firewall, according to the filters you define. When the operation starts, impacted flows are temporarily marked as timed out before the Suricata engine prunes, or flushes, the flows from the firewall table. Warning: While the flush completes, impacted flows are processed as midstream traffic. This may result in a temporary increase in midstream traffic metrics. We recommend that you double check your stream exception policy before you perform a flush operation. See also: AWS API Documentation **Request Syntax** response = client.start_flow_flush( FirewallArn='string', AvailabilityZone='string', VpcEndpointAssociationArn='string', VpcEndpointId='string', MinimumFlowAgeInSeconds=123, FlowFilters=[ { 'SourceAddress': { 'AddressDefinition': 'string' }, 'DestinationAddress': { 'AddressDefinition': 'string' }, 'SourcePort': 'string', 'DestinationPort': 'string', 'Protocols': [ 'string', ] }, ] ) Parameters: * **FirewallArn** (*string*) -- **[REQUIRED]** The Amazon Resource Name (ARN) of the firewall. * **AvailabilityZone** (*string*) -- The ID of the Availability Zone where the firewall is located. For example, "us-east-2a". Defines the scope a flow operation. You can use up to 20 filters to configure a single flow operation. * **VpcEndpointAssociationArn** (*string*) -- The Amazon Resource Name (ARN) of a VPC endpoint association. * **VpcEndpointId** (*string*) -- A unique identifier for the primary endpoint associated with a firewall. * **MinimumFlowAgeInSeconds** (*integer*) -- The reqested "FlowOperation" ignores flows with an age (in seconds) lower than "MinimumFlowAgeInSeconds". You provide this for start commands. * **FlowFilters** (*list*) -- **[REQUIRED]** Defines the scope a flow operation. You can use up to 20 filters to configure a single flow operation. * *(dict) --* Defines the scope a flow operation. You can use up to 20 filters to configure a single flow operation. * **SourceAddress** *(dict) --* A single IP address specification. This is used in the MatchAttributes source and destination specifications. * **AddressDefinition** *(string) --* **[REQUIRED]** Specify an IP address or a block of IP addresses in Classless Inter-Domain Routing (CIDR) notation. Network Firewall supports all address ranges for IPv4 and IPv6. Examples: * To configure Network Firewall to inspect for the IP address 192.0.2.44, specify "192.0.2.44/32". * To configure Network Firewall to inspect for IP addresses from 192.0.2.0 to 192.0.2.255, specify "192.0.2.0/24". * To configure Network Firewall to inspect for the IP address 1111:0000:0000:0000:0000:0000:0000:0111, specify "1111:0000:0000:0000:0000:0000:0000:0111/128". * To configure Network Firewall to inspect for IP addresses from 1111:0000:0000:0000:0000:0000:0000:0000 to 1111:0000:0000:0000:ffff:ffff:ffff:ffff, specify "1111:0000:0000:0000:0000:0000:0000:0000/64". For more information about CIDR notation, see the Wikipedia entry Classless Inter-Domain Routing. * **DestinationAddress** *(dict) --* A single IP address specification. This is used in the MatchAttributes source and destination specifications. * **AddressDefinition** *(string) --* **[REQUIRED]** Specify an IP address or a block of IP addresses in Classless Inter-Domain Routing (CIDR) notation. Network Firewall supports all address ranges for IPv4 and IPv6. Examples: * To configure Network Firewall to inspect for the IP address 192.0.2.44, specify "192.0.2.44/32". * To configure Network Firewall to inspect for IP addresses from 192.0.2.0 to 192.0.2.255, specify "192.0.2.0/24". * To configure Network Firewall to inspect for the IP address 1111:0000:0000:0000:0000:0000:0000:0111, specify "1111:0000:0000:0000:0000:0000:0000:0111/128". * To configure Network Firewall to inspect for IP addresses from 1111:0000:0000:0000:0000:0000:0000:0000 to 1111:0000:0000:0000:ffff:ffff:ffff:ffff, specify "1111:0000:0000:0000:0000:0000:0000:0000/64". For more information about CIDR notation, see the Wikipedia entry Classless Inter-Domain Routing. * **SourcePort** *(string) --* The source port to inspect for. You can specify an individual port, for example "1994" and you can specify a port range, for example "1990:1994". To match with any port, specify "ANY". * **DestinationPort** *(string) --* The destination port to inspect for. You can specify an individual port, for example "1994" and you can specify a port range, for example "1990:1994". To match with any port, specify "ANY". * **Protocols** *(list) --* The protocols to inspect for, specified using the assigned internet protocol number (IANA) for each protocol. If not specified, this matches with any protocol. * *(string) --* Return type: dict Returns: **Response Syntax** { 'FirewallArn': 'string', 'FlowOperationId': 'string', 'FlowOperationStatus': 'COMPLETED'|'IN_PROGRESS'|'FAILED'|'COMPLETED_WITH_ERRORS' } **Response Structure** * *(dict) --* * **FirewallArn** *(string) --* The Amazon Resource Name (ARN) of the firewall. * **FlowOperationId** *(string) --* A unique identifier for the flow operation. This ID is returned in the responses to start and list commands. You provide to describe commands. * **FlowOperationStatus** *(string) --* Returns the status of the flow operation. This string is returned in the responses to start, list, and describe commands. If the status is "COMPLETED_WITH_ERRORS", results may be returned with any number of "Flows" missing from the response. If the status is "FAILED", "Flows" returned will be empty. **Exceptions** * "NetworkFirewall.Client.exceptions.InvalidRequestException" * "NetworkFirewall.Client.exceptions.InternalServerError" * "NetworkFirewall.Client.exceptions.ResourceNotFoundException" * "NetworkFirewall.Client.exceptions.ThrottlingException" NetworkFirewall / Client / close close ***** NetworkFirewall.Client.close() Closes underlying endpoint connections. NetworkFirewall / Client / put_resource_policy put_resource_policy ******************* NetworkFirewall.Client.put_resource_policy(**kwargs) Creates or updates an IAM policy for your rule group, firewall policy, or firewall. Use this to share these resources between accounts. This operation works in conjunction with the Amazon Web Services Resource Access Manager (RAM) service to manage resource sharing for Network Firewall. For information about using sharing with Network Firewall resources, see Sharing Network Firewall resources in the *Network Firewall Developer Guide*. Use this operation to create or update a resource policy for your Network Firewall rule group, firewall policy, or firewall. In the resource policy, you specify the accounts that you want to share the Network Firewall resource with and the operations that you want the accounts to be able to perform. When you add an account in the resource policy, you then run the following Resource Access Manager (RAM) operations to access and accept the shared resource. * GetResourceShareInvitations - Returns the Amazon Resource Names (ARNs) of the resource share invitations. * AcceptResourceShareInvitation - Accepts the share invitation for a specified resource share. For additional information about resource sharing using RAM, see Resource Access Manager User Guide. See also: AWS API Documentation **Request Syntax** response = client.put_resource_policy( ResourceArn='string', Policy='string' ) Parameters: * **ResourceArn** (*string*) -- **[REQUIRED]** The Amazon Resource Name (ARN) of the account that you want to share your Network Firewall resources with. * **Policy** (*string*) -- **[REQUIRED]** The IAM policy statement that lists the accounts that you want to share your Network Firewall resources with and the operations that you want the accounts to be able to perform. For a rule group resource, you can specify the following operations in the Actions section of the statement: * network-firewall:CreateFirewallPolicy * network-firewall:UpdateFirewallPolicy * network-firewall:ListRuleGroups For a firewall policy resource, you can specify the following operations in the Actions section of the statement: * network-firewall:AssociateFirewallPolicy * network-firewall:ListFirewallPolicies For a firewall resource, you can specify the following operations in the Actions section of the statement: * network-firewall:CreateVpcEndpointAssociation * network-firewall:DescribeFirewallMetadata * network-firewall:ListFirewalls In the Resource section of the statement, you specify the ARNs for the Network Firewall resources that you want to share with the account that you specified in "Arn". Return type: dict Returns: **Response Syntax** {} **Response Structure** * *(dict) --* **Exceptions** * "NetworkFirewall.Client.exceptions.InvalidRequestException" * "NetworkFirewall.Client.exceptions.InternalServerError" * "NetworkFirewall.Client.exceptions.ResourceNotFoundException" * "NetworkFirewall.Client.exceptions.ThrottlingException" * "NetworkFirewall.Client.exceptions.InvalidResourcePolicyExceptio n" NetworkFirewall / Client / update_logging_configuration update_logging_configuration **************************** NetworkFirewall.Client.update_logging_configuration(**kwargs) Sets the logging configuration for the specified firewall. To change the logging configuration, retrieve the LoggingConfiguration by calling DescribeLoggingConfiguration, then change it and provide the modified object to this update call. You must change the logging configuration one LogDestinationConfig at a time inside the retrieved LoggingConfiguration object. You can perform only one of the following actions in any call to "UpdateLoggingConfiguration": * Create a new log destination object by adding a single "LogDestinationConfig" array element to "LogDestinationConfigs". * Delete a log destination object by removing a single "LogDestinationConfig" array element from "LogDestinationConfigs". * Change the "LogDestination" setting in a single "LogDestinationConfig" array element. You can't change the "LogDestinationType" or "LogType" in a "LogDestinationConfig". To change these settings, delete the existing "LogDestinationConfig" object and create a new one, using two separate calls to this update operation. See also: AWS API Documentation **Request Syntax** response = client.update_logging_configuration( FirewallArn='string', FirewallName='string', LoggingConfiguration={ 'LogDestinationConfigs': [ { 'LogType': 'ALERT'|'FLOW'|'TLS', 'LogDestinationType': 'S3'|'CloudWatchLogs'|'KinesisDataFirehose', 'LogDestination': { 'string': 'string' } }, ] }, EnableMonitoringDashboard=True|False ) Parameters: * **FirewallArn** (*string*) -- The Amazon Resource Name (ARN) of the firewall. You must specify the ARN or the name, and you can specify both. * **FirewallName** (*string*) -- The descriptive name of the firewall. You can't change the name of a firewall after you create it. You must specify the ARN or the name, and you can specify both. * **LoggingConfiguration** (*dict*) -- Defines how Network Firewall performs logging for a firewall. If you omit this setting, Network Firewall disables logging for the firewall. * **LogDestinationConfigs** *(list) --* **[REQUIRED]** Defines the logging destinations for the logs for a firewall. Network Firewall generates logs for stateful rule groups. * *(dict) --* Defines where Network Firewall sends logs for the firewall for one log type. This is used in LoggingConfiguration. You can send each type of log to an Amazon S3 bucket, a CloudWatch log group, or a Firehose delivery stream. Network Firewall generates logs for stateful rule groups. You can save alert, flow, and TLS log types. * **LogType** *(string) --* **[REQUIRED]** The type of log to record. You can record the following types of logs from your Network Firewall stateful engine. * "ALERT" - Logs for traffic that matches your stateful rules and that have an action that sends an alert. A stateful rule sends alerts for the rule actions DROP, ALERT, and REJECT. For more information, see StatefulRule. * "FLOW" - Standard network traffic flow logs. The stateful rules engine records flow logs for all network traffic that it receives. Each flow log record captures the network flow for a specific standard stateless rule group. * "TLS" - Logs for events that are related to TLS inspection. For more information, see Inspecting SSL/TLS traffic with TLS inspection configurations in the *Network Firewall Developer Guide*. * **LogDestinationType** *(string) --* **[REQUIRED]** The type of storage destination to send these logs to. You can send logs to an Amazon S3 bucket, a CloudWatch log group, or a Firehose delivery stream. * **LogDestination** *(dict) --* **[REQUIRED]** The named location for the logs, provided in a key:value mapping that is specific to the chosen destination type. * For an Amazon S3 bucket, provide the name of the bucket, with key "bucketName", and optionally provide a prefix, with key "prefix". The following example specifies an Amazon S3 bucket named "DOC-EXAMPLE- BUCKET" and the prefix "alerts": ""LogDestination": { "bucketName": "DOC-EXAMPLE-BUCKET", "prefix": "alerts" }" * For a CloudWatch log group, provide the name of the CloudWatch log group, with key "logGroup". The following example specifies a log group named "alert- log-group": ""LogDestination": { "logGroup": "alert- log-group" }" * For a Firehose delivery stream, provide the name of the delivery stream, with key "deliveryStream". The following example specifies a delivery stream named "alert-delivery-stream": ""LogDestination": { "deliveryStream": "alert-delivery-stream" }" * *(string) --* * *(string) --* * **EnableMonitoringDashboard** (*boolean*) -- A boolean that lets you enable or disable the detailed firewall monitoring dashboard on the firewall. The monitoring dashboard provides comprehensive visibility into your firewall's flow logs and alert logs. After you enable detailed monitoring, you can access these dashboards directly from the **Monitoring** page of the Network Firewall console. Specify "TRUE" to enable the the detailed monitoring dashboard on the firewall. Specify "FALSE" to disable the the detailed monitoring dashboard on the firewall. Return type: dict Returns: **Response Syntax** { 'FirewallArn': 'string', 'FirewallName': 'string', 'LoggingConfiguration': { 'LogDestinationConfigs': [ { 'LogType': 'ALERT'|'FLOW'|'TLS', 'LogDestinationType': 'S3'|'CloudWatchLogs'|'KinesisDataFirehose', 'LogDestination': { 'string': 'string' } }, ] }, 'EnableMonitoringDashboard': True|False } **Response Structure** * *(dict) --* * **FirewallArn** *(string) --* The Amazon Resource Name (ARN) of the firewall. * **FirewallName** *(string) --* The descriptive name of the firewall. You can't change the name of a firewall after you create it. * **LoggingConfiguration** *(dict) --* Defines how Network Firewall performs logging for a Firewall. * **LogDestinationConfigs** *(list) --* Defines the logging destinations for the logs for a firewall. Network Firewall generates logs for stateful rule groups. * *(dict) --* Defines where Network Firewall sends logs for the firewall for one log type. This is used in LoggingConfiguration. You can send each type of log to an Amazon S3 bucket, a CloudWatch log group, or a Firehose delivery stream. Network Firewall generates logs for stateful rule groups. You can save alert, flow, and TLS log types. * **LogType** *(string) --* The type of log to record. You can record the following types of logs from your Network Firewall stateful engine. * "ALERT" - Logs for traffic that matches your stateful rules and that have an action that sends an alert. A stateful rule sends alerts for the rule actions DROP, ALERT, and REJECT. For more information, see StatefulRule. * "FLOW" - Standard network traffic flow logs. The stateful rules engine records flow logs for all network traffic that it receives. Each flow log record captures the network flow for a specific standard stateless rule group. * "TLS" - Logs for events that are related to TLS inspection. For more information, see Inspecting SSL/TLS traffic with TLS inspection configurations in the *Network Firewall Developer Guide*. * **LogDestinationType** *(string) --* The type of storage destination to send these logs to. You can send logs to an Amazon S3 bucket, a CloudWatch log group, or a Firehose delivery stream. * **LogDestination** *(dict) --* The named location for the logs, provided in a key:value mapping that is specific to the chosen destination type. * For an Amazon S3 bucket, provide the name of the bucket, with key "bucketName", and optionally provide a prefix, with key "prefix". The following example specifies an Amazon S3 bucket named "DOC- EXAMPLE-BUCKET" and the prefix "alerts": ""LogDestination": { "bucketName": "DOC-EXAMPLE- BUCKET", "prefix": "alerts" }" * For a CloudWatch log group, provide the name of the CloudWatch log group, with key "logGroup". The following example specifies a log group named "alert-log-group": ""LogDestination": { "logGroup": "alert-log-group" }" * For a Firehose delivery stream, provide the name of the delivery stream, with key "deliveryStream". The following example specifies a delivery stream named "alert-delivery-stream": ""LogDestination": { "deliveryStream": "alert-delivery-stream" }" * *(string) --* * *(string) --* * **EnableMonitoringDashboard** *(boolean) --* A boolean that reflects whether or not the firewall monitoring dashboard is enabled on a firewall. Returns "TRUE" when the firewall monitoring dashboard is enabled on the firewall. Returns "FALSE" when the firewall monitoring dashboard is not enabled on the firewall. **Exceptions** * "NetworkFirewall.Client.exceptions.InvalidRequestException" * "NetworkFirewall.Client.exceptions.InternalServerError" * "NetworkFirewall.Client.exceptions.ResourceNotFoundException" * "NetworkFirewall.Client.exceptions.ThrottlingException" * "NetworkFirewall.Client.exceptions.InvalidTokenException" * "NetworkFirewall.Client.exceptions.LogDestinationPermissionExcep tion" NetworkFirewall / Client / update_tls_inspection_configuration update_tls_inspection_configuration *********************************** NetworkFirewall.Client.update_tls_inspection_configuration(**kwargs) Updates the TLS inspection configuration settings for the specified TLS inspection configuration. You use a TLS inspection configuration by referencing it in one or more firewall policies. When you modify a TLS inspection configuration, you modify all firewall policies that use the TLS inspection configuration. To update a TLS inspection configuration, first call DescribeTLSInspectionConfiguration to retrieve the current TLSInspectionConfiguration object, update the object as needed, and then provide the updated object to this call. See also: AWS API Documentation **Request Syntax** response = client.update_tls_inspection_configuration( TLSInspectionConfigurationArn='string', TLSInspectionConfigurationName='string', TLSInspectionConfiguration={ 'ServerCertificateConfigurations': [ { 'ServerCertificates': [ { 'ResourceArn': 'string' }, ], 'Scopes': [ { 'Sources': [ { 'AddressDefinition': 'string' }, ], 'Destinations': [ { 'AddressDefinition': 'string' }, ], 'SourcePorts': [ { 'FromPort': 123, 'ToPort': 123 }, ], 'DestinationPorts': [ { 'FromPort': 123, 'ToPort': 123 }, ], 'Protocols': [ 123, ] }, ], 'CertificateAuthorityArn': 'string', 'CheckCertificateRevocationStatus': { 'RevokedStatusAction': 'PASS'|'DROP'|'REJECT', 'UnknownStatusAction': 'PASS'|'DROP'|'REJECT' } }, ] }, Description='string', EncryptionConfiguration={ 'KeyId': 'string', 'Type': 'CUSTOMER_KMS'|'AWS_OWNED_KMS_KEY' }, UpdateToken='string' ) Parameters: * **TLSInspectionConfigurationArn** (*string*) -- The Amazon Resource Name (ARN) of the TLS inspection configuration. * **TLSInspectionConfigurationName** (*string*) -- The descriptive name of the TLS inspection configuration. You can't change the name of a TLS inspection configuration after you create it. * **TLSInspectionConfiguration** (*dict*) -- **[REQUIRED]** The object that defines a TLS inspection configuration. This, along with TLSInspectionConfigurationResponse, define the TLS inspection configuration. You can retrieve all objects for a TLS inspection configuration by calling DescribeTLSInspectionConfiguration. Network Firewall uses a TLS inspection configuration to decrypt traffic. Network Firewall re-encrypts the traffic before sending it to its destination. To use a TLS inspection configuration, you add it to a new Network Firewall firewall policy, then you apply the firewall policy to a firewall. Network Firewall acts as a proxy service to decrypt and inspect the traffic traveling through your firewalls. You can reference a TLS inspection configuration from more than one firewall policy, and you can use a firewall policy in more than one firewall. For more information about using TLS inspection configurations, see Inspecting SSL/TLS traffic with TLS inspection configurations in the *Network Firewall Developer Guide*. * **ServerCertificateConfigurations** *(list) --* Lists the server certificate configurations that are associated with the TLS configuration. * *(dict) --* Configures the Certificate Manager certificates and scope that Network Firewall uses to decrypt and re-encrypt traffic using a TLSInspectionConfiguration. You can configure "ServerCertificates" for inbound SSL/TLS inspection, a "CertificateAuthorityArn" for outbound SSL/TLS inspection, or both. For information about working with certificates for TLS inspection, see Using SSL/TLS server certficiates with TLS inspection configurations in the *Network Firewall Developer Guide*. Note: If a server certificate that's associated with your TLSInspectionConfiguration is revoked, deleted, or expired it can result in client-side TLS errors. * **ServerCertificates** *(list) --* The list of server certificates to use for inbound SSL/TLS inspection. * *(dict) --* Any Certificate Manager (ACM) Secure Sockets Layer/Transport Layer Security (SSL/TLS) server certificate that's associated with a ServerCertificateConfiguration. Used in a TLSInspectionConfiguration for inspection of inbound traffic to your firewall. You must request or import a SSL/TLS certificate into ACM for each domain Network Firewall needs to decrypt and inspect. Network Firewall uses the SSL/TLS certificates to decrypt specified inbound SSL/TLS traffic going to your firewall. For information about working with certificates in Certificate Manager, see Request a public certificate or Importing certificates in the *Certificate Manager User Guide*. * **ResourceArn** *(string) --* The Amazon Resource Name (ARN) of the Certificate Manager SSL/TLS server certificate that's used for inbound SSL/TLS inspection. * **Scopes** *(list) --* A list of scopes. * *(dict) --* Settings that define the Secure Sockets Layer/Transport Layer Security (SSL/TLS) traffic that Network Firewall should decrypt for inspection by the stateful rule engine. * **Sources** *(list) --* The source IP addresses and address ranges to decrypt for inspection, in CIDR notation. If not specified, this matches with any source address. * *(dict) --* A single IP address specification. This is used in the MatchAttributes source and destination specifications. * **AddressDefinition** *(string) --* **[REQUIRED]** Specify an IP address or a block of IP addresses in Classless Inter-Domain Routing (CIDR) notation. Network Firewall supports all address ranges for IPv4 and IPv6. Examples: * To configure Network Firewall to inspect for the IP address 192.0.2.44, specify "192.0.2.44/32". * To configure Network Firewall to inspect for IP addresses from 192.0.2.0 to 192.0.2.255, specify "192.0.2.0/24". * To configure Network Firewall to inspect for the IP address 1111:0000:0000:0000:0000:0000:0000:0111, specify "1111:0000:0000:0000:0000:0000:0000:0111/128". * To configure Network Firewall to inspect for IP addresses from 1111:0000:0000:0000:0000:0000:0000:0000 to 1111:0000:0000:0000:ffff:ffff:ffff:ffff, specify "1111:0000:0000:0000:0000:0000:0000:0000/64". For more information about CIDR notation, see the Wikipedia entry Classless Inter-Domain Routing. * **Destinations** *(list) --* The destination IP addresses and address ranges to decrypt for inspection, in CIDR notation. If not specified, this matches with any destination address. * *(dict) --* A single IP address specification. This is used in the MatchAttributes source and destination specifications. * **AddressDefinition** *(string) --* **[REQUIRED]** Specify an IP address or a block of IP addresses in Classless Inter-Domain Routing (CIDR) notation. Network Firewall supports all address ranges for IPv4 and IPv6. Examples: * To configure Network Firewall to inspect for the IP address 192.0.2.44, specify "192.0.2.44/32". * To configure Network Firewall to inspect for IP addresses from 192.0.2.0 to 192.0.2.255, specify "192.0.2.0/24". * To configure Network Firewall to inspect for the IP address 1111:0000:0000:0000:0000:0000:0000:0111, specify "1111:0000:0000:0000:0000:0000:0000:0111/128". * To configure Network Firewall to inspect for IP addresses from 1111:0000:0000:0000:0000:0000:0000:0000 to 1111:0000:0000:0000:ffff:ffff:ffff:ffff, specify "1111:0000:0000:0000:0000:0000:0000:0000/64". For more information about CIDR notation, see the Wikipedia entry Classless Inter-Domain Routing. * **SourcePorts** *(list) --* The source ports to decrypt for inspection, in Transmission Control Protocol (TCP) format. If not specified, this matches with any source port. You can specify individual ports, for example "1994", and you can specify port ranges, such as "1990:1994". * *(dict) --* A single port range specification. This is used for source and destination port ranges in the stateless rule MatchAttributes, "SourcePorts", and "DestinationPorts" settings. * **FromPort** *(integer) --* **[REQUIRED]** The lower limit of the port range. This must be less than or equal to the "ToPort" specification. * **ToPort** *(integer) --* **[REQUIRED]** The upper limit of the port range. This must be greater than or equal to the "FromPort" specification. * **DestinationPorts** *(list) --* The destination ports to decrypt for inspection, in Transmission Control Protocol (TCP) format. If not specified, this matches with any destination port. You can specify individual ports, for example "1994", and you can specify port ranges, such as "1990:1994". * *(dict) --* A single port range specification. This is used for source and destination port ranges in the stateless rule MatchAttributes, "SourcePorts", and "DestinationPorts" settings. * **FromPort** *(integer) --* **[REQUIRED]** The lower limit of the port range. This must be less than or equal to the "ToPort" specification. * **ToPort** *(integer) --* **[REQUIRED]** The upper limit of the port range. This must be greater than or equal to the "FromPort" specification. * **Protocols** *(list) --* The protocols to inspect for, specified using the assigned internet protocol number (IANA) for each protocol. If not specified, this matches with any protocol. Network Firewall currently supports only TCP. * *(integer) --* * **CertificateAuthorityArn** *(string) --* The Amazon Resource Name (ARN) of the imported certificate authority (CA) certificate within Certificate Manager (ACM) to use for outbound SSL/TLS inspection. The following limitations apply: * You can use CA certificates that you imported into ACM, but you can't generate CA certificates with ACM. * You can't use certificates issued by Private Certificate Authority. For more information about configuring certificates for outbound inspection, see Using SSL/TLS certificates with TLS inspection configurations in the *Network Firewall Developer Guide*. For information about working with certificates in ACM, see Importing certificates in the *Certificate Manager User Guide*. * **CheckCertificateRevocationStatus** *(dict) --* When enabled, Network Firewall checks if the server certificate presented by the server in the SSL/TLS connection has a revoked or unkown status. If the certificate has an unknown or revoked status, you must specify the actions that Network Firewall takes on outbound traffic. To check the certificate revocation status, you must also specify a "CertificateAuthorityArn" in ServerCertificateConfiguration. * **RevokedStatusAction** *(string) --* Configures how Network Firewall processes traffic when it determines that the certificate presented by the server in the SSL/TLS connection has a revoked status. * **PASS** - Allow the connection to continue, and pass subsequent packets to the stateful engine for inspection. * **DROP** - Network Firewall closes the connection and drops subsequent packets for that connection. * **REJECT** - Network Firewall sends a TCP reject packet back to your client. The service closes the connection and drops subsequent packets for that connection. "REJECT" is available only for TCP traffic. * **UnknownStatusAction** *(string) --* Configures how Network Firewall processes traffic when it determines that the certificate presented by the server in the SSL/TLS connection has an unknown status, or a status that cannot be determined for any other reason, including when the service is unable to connect to the OCSP and CRL endpoints for the certificate. * **PASS** - Allow the connection to continue, and pass subsequent packets to the stateful engine for inspection. * **DROP** - Network Firewall closes the connection and drops subsequent packets for that connection. * **REJECT** - Network Firewall sends a TCP reject packet back to your client. The service closes the connection and drops subsequent packets for that connection. "REJECT" is available only for TCP traffic. * **Description** (*string*) -- A description of the TLS inspection configuration. * **EncryptionConfiguration** (*dict*) -- A complex type that contains the Amazon Web Services KMS encryption configuration settings for your TLS inspection configuration. * **KeyId** *(string) --* The ID of the Amazon Web Services Key Management Service (KMS) customer managed key. You can use any of the key identifiers that KMS supports, unless you're using a key that's managed by another account. If you're using a key managed by another account, then specify the key ARN. For more information, see Key ID in the *Amazon Web Services KMS Developer Guide*. * **Type** *(string) --* **[REQUIRED]** The type of Amazon Web Services KMS key to use for encryption of your Network Firewall resources. * **UpdateToken** (*string*) -- **[REQUIRED]** A token used for optimistic locking. Network Firewall returns a token to your requests that access the TLS inspection configuration. The token marks the state of the TLS inspection configuration resource at the time of the request. To make changes to the TLS inspection configuration, you provide the token in your request. Network Firewall uses the token to ensure that the TLS inspection configuration hasn't changed since you last retrieved it. If it has changed, the operation fails with an "InvalidTokenException". If this happens, retrieve the TLS inspection configuration again to get a current copy of it with a current token. Reapply your changes as needed, then try the operation again using the new token. Return type: dict Returns: **Response Syntax** { 'UpdateToken': 'string', 'TLSInspectionConfigurationResponse': { 'TLSInspectionConfigurationArn': 'string', 'TLSInspectionConfigurationName': 'string', 'TLSInspectionConfigurationId': 'string', 'TLSInspectionConfigurationStatus': 'ACTIVE'|'DELETING'|'ERROR', 'Description': 'string', 'Tags': [ { 'Key': 'string', 'Value': 'string' }, ], 'LastModifiedTime': datetime(2015, 1, 1), 'NumberOfAssociations': 123, 'EncryptionConfiguration': { 'KeyId': 'string', 'Type': 'CUSTOMER_KMS'|'AWS_OWNED_KMS_KEY' }, 'Certificates': [ { 'CertificateArn': 'string', 'CertificateSerial': 'string', 'Status': 'string', 'StatusMessage': 'string' }, ], 'CertificateAuthority': { 'CertificateArn': 'string', 'CertificateSerial': 'string', 'Status': 'string', 'StatusMessage': 'string' } } } **Response Structure** * *(dict) --* * **UpdateToken** *(string) --* A token used for optimistic locking. Network Firewall returns a token to your requests that access the TLS inspection configuration. The token marks the state of the TLS inspection configuration resource at the time of the request. To make changes to the TLS inspection configuration, you provide the token in your request. Network Firewall uses the token to ensure that the TLS inspection configuration hasn't changed since you last retrieved it. If it has changed, the operation fails with an "InvalidTokenException". If this happens, retrieve the TLS inspection configuration again to get a current copy of it with a current token. Reapply your changes as needed, then try the operation again using the new token. * **TLSInspectionConfigurationResponse** *(dict) --* The high-level properties of a TLS inspection configuration. This, along with the TLSInspectionConfiguration, define the TLS inspection configuration. You can retrieve all objects for a TLS inspection configuration by calling DescribeTLSInspectionConfiguration. * **TLSInspectionConfigurationArn** *(string) --* The Amazon Resource Name (ARN) of the TLS inspection configuration. * **TLSInspectionConfigurationName** *(string) --* The descriptive name of the TLS inspection configuration. You can't change the name of a TLS inspection configuration after you create it. * **TLSInspectionConfigurationId** *(string) --* A unique identifier for the TLS inspection configuration. This ID is returned in the responses to create and list commands. You provide it to operations such as update and delete. * **TLSInspectionConfigurationStatus** *(string) --* Detailed information about the current status of a TLSInspectionConfiguration. You can retrieve this for a TLS inspection configuration by calling DescribeTLSInspectionConfiguration and providing the TLS inspection configuration name and ARN. * **Description** *(string) --* A description of the TLS inspection configuration. * **Tags** *(list) --* The key:value pairs to associate with the resource. * *(dict) --* A key:value pair associated with an Amazon Web Services resource. The key:value pair can be anything you define. Typically, the tag key represents a category (such as "environment") and the tag value represents a specific value within that category (such as "test," "development," or "production"). You can add up to 50 tags to each Amazon Web Services resource. * **Key** *(string) --* The part of the key:value pair that defines a tag. You can use a tag key to describe a category of information, such as "customer." Tag keys are case- sensitive. * **Value** *(string) --* The part of the key:value pair that defines a tag. You can use a tag value to describe a specific value within a category, such as "companyA" or "companyB." Tag values are case-sensitive. * **LastModifiedTime** *(datetime) --* The last time that the TLS inspection configuration was changed. * **NumberOfAssociations** *(integer) --* The number of firewall policies that use this TLS inspection configuration. * **EncryptionConfiguration** *(dict) --* A complex type that contains the Amazon Web Services KMS encryption configuration settings for your TLS inspection configuration. * **KeyId** *(string) --* The ID of the Amazon Web Services Key Management Service (KMS) customer managed key. You can use any of the key identifiers that KMS supports, unless you're using a key that's managed by another account. If you're using a key managed by another account, then specify the key ARN. For more information, see Key ID in the *Amazon Web Services KMS Developer Guide*. * **Type** *(string) --* The type of Amazon Web Services KMS key to use for encryption of your Network Firewall resources. * **Certificates** *(list) --* A list of the certificates associated with the TLS inspection configuration. * *(dict) --* Contains metadata about an Certificate Manager certificate. * **CertificateArn** *(string) --* The Amazon Resource Name (ARN) of the certificate. * **CertificateSerial** *(string) --* The serial number of the certificate. * **Status** *(string) --* The status of the certificate. * **StatusMessage** *(string) --* Contains details about the certificate status, including information about certificate errors. * **CertificateAuthority** *(dict) --* Contains metadata about an Certificate Manager certificate. * **CertificateArn** *(string) --* The Amazon Resource Name (ARN) of the certificate. * **CertificateSerial** *(string) --* The serial number of the certificate. * **Status** *(string) --* The status of the certificate. * **StatusMessage** *(string) --* Contains details about the certificate status, including information about certificate errors. **Exceptions** * "NetworkFirewall.Client.exceptions.InvalidRequestException" * "NetworkFirewall.Client.exceptions.ResourceNotFoundException" * "NetworkFirewall.Client.exceptions.ThrottlingException" * "NetworkFirewall.Client.exceptions.InternalServerError" * "NetworkFirewall.Client.exceptions.InvalidTokenException" NetworkFirewall / Client / delete_firewall_policy delete_firewall_policy ********************** NetworkFirewall.Client.delete_firewall_policy(**kwargs) Deletes the specified FirewallPolicy. See also: AWS API Documentation **Request Syntax** response = client.delete_firewall_policy( FirewallPolicyName='string', FirewallPolicyArn='string' ) Parameters: * **FirewallPolicyName** (*string*) -- The descriptive name of the firewall policy. You can't change the name of a firewall policy after you create it. You must specify the ARN or the name, and you can specify both. * **FirewallPolicyArn** (*string*) -- The Amazon Resource Name (ARN) of the firewall policy. You must specify the ARN or the name, and you can specify both. Return type: dict Returns: **Response Syntax** { 'FirewallPolicyResponse': { 'FirewallPolicyName': 'string', 'FirewallPolicyArn': 'string', 'FirewallPolicyId': 'string', 'Description': 'string', 'FirewallPolicyStatus': 'ACTIVE'|'DELETING'|'ERROR', 'Tags': [ { 'Key': 'string', 'Value': 'string' }, ], 'ConsumedStatelessRuleCapacity': 123, 'ConsumedStatefulRuleCapacity': 123, 'NumberOfAssociations': 123, 'EncryptionConfiguration': { 'KeyId': 'string', 'Type': 'CUSTOMER_KMS'|'AWS_OWNED_KMS_KEY' }, 'LastModifiedTime': datetime(2015, 1, 1) } } **Response Structure** * *(dict) --* * **FirewallPolicyResponse** *(dict) --* The object containing the definition of the FirewallPolicyResponse that you asked to delete. * **FirewallPolicyName** *(string) --* The descriptive name of the firewall policy. You can't change the name of a firewall policy after you create it. * **FirewallPolicyArn** *(string) --* The Amazon Resource Name (ARN) of the firewall policy. Note: If this response is for a create request that had "DryRun" set to "TRUE", then this ARN is a placeholder that isn't attached to a valid resource. * **FirewallPolicyId** *(string) --* The unique identifier for the firewall policy. * **Description** *(string) --* A description of the firewall policy. * **FirewallPolicyStatus** *(string) --* The current status of the firewall policy. You can retrieve this for a firewall policy by calling DescribeFirewallPolicy and providing the firewall policy's name or ARN. * **Tags** *(list) --* The key:value pairs to associate with the resource. * *(dict) --* A key:value pair associated with an Amazon Web Services resource. The key:value pair can be anything you define. Typically, the tag key represents a category (such as "environment") and the tag value represents a specific value within that category (such as "test," "development," or "production"). You can add up to 50 tags to each Amazon Web Services resource. * **Key** *(string) --* The part of the key:value pair that defines a tag. You can use a tag key to describe a category of information, such as "customer." Tag keys are case- sensitive. * **Value** *(string) --* The part of the key:value pair that defines a tag. You can use a tag value to describe a specific value within a category, such as "companyA" or "companyB." Tag values are case-sensitive. * **ConsumedStatelessRuleCapacity** *(integer) --* The number of capacity units currently consumed by the policy's stateless rules. * **ConsumedStatefulRuleCapacity** *(integer) --* The number of capacity units currently consumed by the policy's stateful rules. * **NumberOfAssociations** *(integer) --* The number of firewalls that are associated with this firewall policy. * **EncryptionConfiguration** *(dict) --* A complex type that contains the Amazon Web Services KMS encryption configuration settings for your firewall policy. * **KeyId** *(string) --* The ID of the Amazon Web Services Key Management Service (KMS) customer managed key. You can use any of the key identifiers that KMS supports, unless you're using a key that's managed by another account. If you're using a key managed by another account, then specify the key ARN. For more information, see Key ID in the *Amazon Web Services KMS Developer Guide*. * **Type** *(string) --* The type of Amazon Web Services KMS key to use for encryption of your Network Firewall resources. * **LastModifiedTime** *(datetime) --* The last time that the firewall policy was changed. **Exceptions** * "NetworkFirewall.Client.exceptions.InvalidRequestException" * "NetworkFirewall.Client.exceptions.ResourceNotFoundException" * "NetworkFirewall.Client.exceptions.ThrottlingException" * "NetworkFirewall.Client.exceptions.InternalServerError" * "NetworkFirewall.Client.exceptions.UnsupportedOperationException" * "NetworkFirewall.Client.exceptions.InvalidOperationException" NetworkFirewall / Client / accept_network_firewall_transit_gateway_attachment accept_network_firewall_transit_gateway_attachment ************************************************** NetworkFirewall.Client.accept_network_firewall_transit_gateway_attachment(**kwargs) Accepts a transit gateway attachment request for Network Firewall. When you accept the attachment request, Network Firewall creates the necessary routing components to enable traffic flow between the transit gateway and firewall endpoints. You must accept a transit gateway attachment to complete the creation of a transit gateway-attached firewall, unless auto-accept is enabled on the transit gateway. After acceptance, use DescribeFirewall to verify the firewall status. To reject an attachment instead of accepting it, use RejectNetworkFirewallTransitGatewayAttachment. Note: It can take several minutes for the attachment acceptance to complete and the firewall to become available. See also: AWS API Documentation **Request Syntax** response = client.accept_network_firewall_transit_gateway_attachment( TransitGatewayAttachmentId='string' ) Parameters: **TransitGatewayAttachmentId** (*string*) -- **[REQUIRED]** Required. The unique identifier of the transit gateway attachment to accept. This ID is returned in the response when creating a transit gateway-attached firewall. Return type: dict Returns: **Response Syntax** { 'TransitGatewayAttachmentId': 'string', 'TransitGatewayAttachmentStatus': 'CREATING'|'DELETING'|'DELETED'|'FAILED'|'ERROR'|'READY'|'PENDING_ACCEPTANCE'|'REJECTING'|'REJECTED' } **Response Structure** * *(dict) --* * **TransitGatewayAttachmentId** *(string) --* The unique identifier of the transit gateway attachment that was accepted. * **TransitGatewayAttachmentStatus** *(string) --* The current status of the transit gateway attachment. Valid values are: * "CREATING" - The attachment is being created * "DELETING" - The attachment is being deleted * "DELETED" - The attachment has been deleted * "FAILED" - The attachment creation has failed and cannot be recovered * "ERROR" - The attachment is in an error state that might be recoverable * "READY" - The attachment is active and processing traffic * "PENDING_ACCEPTANCE" - The attachment is waiting to be accepted * "REJECTING" - The attachment is in the process of being rejected * "REJECTED" - The attachment has been rejected **Exceptions** * "NetworkFirewall.Client.exceptions.InvalidRequestException" * "NetworkFirewall.Client.exceptions.InternalServerError" * "NetworkFirewall.Client.exceptions.ResourceNotFoundException" * "NetworkFirewall.Client.exceptions.ThrottlingException" NetworkFirewall / Client / associate_firewall_policy associate_firewall_policy ************************* NetworkFirewall.Client.associate_firewall_policy(**kwargs) Associates a FirewallPolicy to a Firewall. A firewall policy defines how to monitor and manage your VPC network traffic, using a collection of inspection rule groups and other settings. Each firewall requires one firewall policy association, and you can use the same firewall policy for multiple firewalls. See also: AWS API Documentation **Request Syntax** response = client.associate_firewall_policy( UpdateToken='string', FirewallArn='string', FirewallName='string', FirewallPolicyArn='string' ) Parameters: * **UpdateToken** (*string*) -- An optional token that you can use for optimistic locking. Network Firewall returns a token to your requests that access the firewall. The token marks the state of the firewall resource at the time of the request. To make an unconditional change to the firewall, omit the token in your update request. Without the token, Network Firewall performs your updates regardless of whether the firewall has changed since you last retrieved it. To make a conditional change to the firewall, provide the token in your update request. Network Firewall uses the token to ensure that the firewall hasn't changed since you last retrieved it. If it has changed, the operation fails with an "InvalidTokenException". If this happens, retrieve the firewall again to get a current copy of it with a new token. Reapply your changes as needed, then try the operation again using the new token. * **FirewallArn** (*string*) -- The Amazon Resource Name (ARN) of the firewall. You must specify the ARN or the name, and you can specify both. * **FirewallName** (*string*) -- The descriptive name of the firewall. You can't change the name of a firewall after you create it. You must specify the ARN or the name, and you can specify both. * **FirewallPolicyArn** (*string*) -- **[REQUIRED]** The Amazon Resource Name (ARN) of the firewall policy. Return type: dict Returns: **Response Syntax** { 'FirewallArn': 'string', 'FirewallName': 'string', 'FirewallPolicyArn': 'string', 'UpdateToken': 'string' } **Response Structure** * *(dict) --* * **FirewallArn** *(string) --* The Amazon Resource Name (ARN) of the firewall. * **FirewallName** *(string) --* The descriptive name of the firewall. You can't change the name of a firewall after you create it. * **FirewallPolicyArn** *(string) --* The Amazon Resource Name (ARN) of the firewall policy. * **UpdateToken** *(string) --* An optional token that you can use for optimistic locking. Network Firewall returns a token to your requests that access the firewall. The token marks the state of the firewall resource at the time of the request. To make an unconditional change to the firewall, omit the token in your update request. Without the token, Network Firewall performs your updates regardless of whether the firewall has changed since you last retrieved it. To make a conditional change to the firewall, provide the token in your update request. Network Firewall uses the token to ensure that the firewall hasn't changed since you last retrieved it. If it has changed, the operation fails with an "InvalidTokenException". If this happens, retrieve the firewall again to get a current copy of it with a new token. Reapply your changes as needed, then try the operation again using the new token. **Exceptions** * "NetworkFirewall.Client.exceptions.InvalidRequestException" * "NetworkFirewall.Client.exceptions.InternalServerError" * "NetworkFirewall.Client.exceptions.ResourceNotFoundException" * "NetworkFirewall.Client.exceptions.ThrottlingException" * "NetworkFirewall.Client.exceptions.InvalidTokenException" * "NetworkFirewall.Client.exceptions.InvalidOperationException" NetworkFirewall / Client / disassociate_availability_zones disassociate_availability_zones ******************************* NetworkFirewall.Client.disassociate_availability_zones(**kwargs) Removes the specified Availability Zone associations from a transit gateway-attached firewall. This removes the firewall endpoints from these Availability Zones and stops traffic filtering in those zones. Before removing an Availability Zone, ensure you've updated your transit gateway route tables to redirect traffic appropriately. Note: If "AvailabilityZoneChangeProtection" is enabled, you must first disable it using UpdateAvailabilityZoneChangeProtection. To verify the status of your Availability Zone changes, use DescribeFirewall. See also: AWS API Documentation **Request Syntax** response = client.disassociate_availability_zones( UpdateToken='string', FirewallArn='string', FirewallName='string', AvailabilityZoneMappings=[ { 'AvailabilityZone': 'string' }, ] ) Parameters: * **UpdateToken** (*string*) -- An optional token that you can use for optimistic locking. Network Firewall returns a token to your requests that access the firewall. The token marks the state of the firewall resource at the time of the request. To make an unconditional change to the firewall, omit the token in your update request. Without the token, Network Firewall performs your updates regardless of whether the firewall has changed since you last retrieved it. To make a conditional change to the firewall, provide the token in your update request. Network Firewall uses the token to ensure that the firewall hasn't changed since you last retrieved it. If it has changed, the operation fails with an "InvalidTokenException". If this happens, retrieve the firewall again to get a current copy of it with a new token. Reapply your changes as needed, then try the operation again using the new token. * **FirewallArn** (*string*) -- The Amazon Resource Name (ARN) of the firewall. You must specify the ARN or the name, and you can specify both. * **FirewallName** (*string*) -- The descriptive name of the firewall. You can't change the name of a firewall after you create it. You must specify the ARN or the name, and you can specify both. * **AvailabilityZoneMappings** (*list*) -- **[REQUIRED]** Required. The Availability Zones to remove from the firewall's configuration. * *(dict) --* Defines the mapping between an Availability Zone and a firewall endpoint for a transit gateway-attached firewall. Each mapping represents where the firewall can process traffic. You use these mappings when calling CreateFirewall, AssociateAvailabilityZones, and DisassociateAvailabilityZones. To retrieve the current Availability Zone mappings for a firewall, use DescribeFirewall. * **AvailabilityZone** *(string) --* **[REQUIRED]** The ID of the Availability Zone where the firewall endpoint is located. For example, "us-east-2a". The Availability Zone must be in the same Region as the transit gateway. Return type: dict Returns: **Response Syntax** { 'FirewallArn': 'string', 'FirewallName': 'string', 'AvailabilityZoneMappings': [ { 'AvailabilityZone': 'string' }, ], 'UpdateToken': 'string' } **Response Structure** * *(dict) --* * **FirewallArn** *(string) --* The Amazon Resource Name (ARN) of the firewall. * **FirewallName** *(string) --* The descriptive name of the firewall. You can't change the name of a firewall after you create it. * **AvailabilityZoneMappings** *(list) --* The remaining Availability Zones where the firewall has endpoints after the disassociation. * *(dict) --* Defines the mapping between an Availability Zone and a firewall endpoint for a transit gateway-attached firewall. Each mapping represents where the firewall can process traffic. You use these mappings when calling CreateFirewall, AssociateAvailabilityZones, and DisassociateAvailabilityZones. To retrieve the current Availability Zone mappings for a firewall, use DescribeFirewall. * **AvailabilityZone** *(string) --* The ID of the Availability Zone where the firewall endpoint is located. For example, "us-east-2a". The Availability Zone must be in the same Region as the transit gateway. * **UpdateToken** *(string) --* An optional token that you can use for optimistic locking. Network Firewall returns a token to your requests that access the firewall. The token marks the state of the firewall resource at the time of the request. To make an unconditional change to the firewall, omit the token in your update request. Without the token, Network Firewall performs your updates regardless of whether the firewall has changed since you last retrieved it. To make a conditional change to the firewall, provide the token in your update request. Network Firewall uses the token to ensure that the firewall hasn't changed since you last retrieved it. If it has changed, the operation fails with an "InvalidTokenException". If this happens, retrieve the firewall again to get a current copy of it with a new token. Reapply your changes as needed, then try the operation again using the new token. **Exceptions** * "NetworkFirewall.Client.exceptions.InvalidRequestException" * "NetworkFirewall.Client.exceptions.InternalServerError" * "NetworkFirewall.Client.exceptions.ResourceNotFoundException" * "NetworkFirewall.Client.exceptions.ThrottlingException" * "NetworkFirewall.Client.exceptions.InvalidTokenException" * "NetworkFirewall.Client.exceptions.InvalidOperationException" NetworkFirewall / Client / create_firewall_policy create_firewall_policy ********************** NetworkFirewall.Client.create_firewall_policy(**kwargs) Creates the firewall policy for the firewall according to the specifications. An Network Firewall firewall policy defines the behavior of a firewall, in a collection of stateless and stateful rule groups and other settings. You can use one firewall policy for multiple firewalls. See also: AWS API Documentation **Request Syntax** response = client.create_firewall_policy( FirewallPolicyName='string', FirewallPolicy={ 'StatelessRuleGroupReferences': [ { 'ResourceArn': 'string', 'Priority': 123 }, ], 'StatelessDefaultActions': [ 'string', ], 'StatelessFragmentDefaultActions': [ 'string', ], 'StatelessCustomActions': [ { 'ActionName': 'string', 'ActionDefinition': { 'PublishMetricAction': { 'Dimensions': [ { 'Value': 'string' }, ] } } }, ], 'StatefulRuleGroupReferences': [ { 'ResourceArn': 'string', 'Priority': 123, 'Override': { 'Action': 'DROP_TO_ALERT' }, 'DeepThreatInspection': True|False }, ], 'StatefulDefaultActions': [ 'string', ], 'StatefulEngineOptions': { 'RuleOrder': 'DEFAULT_ACTION_ORDER'|'STRICT_ORDER', 'StreamExceptionPolicy': 'DROP'|'CONTINUE'|'REJECT', 'FlowTimeouts': { 'TcpIdleTimeoutSeconds': 123 } }, 'TLSInspectionConfigurationArn': 'string', 'PolicyVariables': { 'RuleVariables': { 'string': { 'Definition': [ 'string', ] } } } }, Description='string', Tags=[ { 'Key': 'string', 'Value': 'string' }, ], DryRun=True|False, EncryptionConfiguration={ 'KeyId': 'string', 'Type': 'CUSTOMER_KMS'|'AWS_OWNED_KMS_KEY' } ) Parameters: * **FirewallPolicyName** (*string*) -- **[REQUIRED]** The descriptive name of the firewall policy. You can't change the name of a firewall policy after you create it. * **FirewallPolicy** (*dict*) -- **[REQUIRED]** The rule groups and policy actions to use in the firewall policy. * **StatelessRuleGroupReferences** *(list) --* References to the stateless rule groups that are used in the policy. These define the matching criteria in stateless rules. * *(dict) --* Identifier for a single stateless rule group, used in a firewall policy to refer to the rule group. * **ResourceArn** *(string) --* **[REQUIRED]** The Amazon Resource Name (ARN) of the stateless rule group. * **Priority** *(integer) --* **[REQUIRED]** An integer setting that indicates the order in which to run the stateless rule groups in a single FirewallPolicy. Network Firewall applies each stateless rule group to a packet starting with the group that has the lowest priority setting. You must ensure that the priority settings are unique within each policy. * **StatelessDefaultActions** *(list) --* **[REQUIRED]** The actions to take on a packet if it doesn't match any of the stateless rules in the policy. If you want non-matching packets to be forwarded for stateful inspection, specify "aws:forward_to_sfe". You must specify one of the standard actions: "aws:pass", "aws:drop", or "aws:forward_to_sfe". In addition, you can specify custom actions that are compatible with your standard section choice. For example, you could specify "["aws:pass"]" or you could specify "["aws:pass", “customActionName”]". For information about compatibility, see the custom action descriptions under CustomAction. * *(string) --* * **StatelessFragmentDefaultActions** *(list) --* **[REQUIRED]** The actions to take on a fragmented UDP packet if it doesn't match any of the stateless rules in the policy. Network Firewall only manages UDP packet fragments and silently drops packet fragments for other protocols. If you want non- matching fragmented UDP packets to be forwarded for stateful inspection, specify "aws:forward_to_sfe". You must specify one of the standard actions: "aws:pass", "aws:drop", or "aws:forward_to_sfe". In addition, you can specify custom actions that are compatible with your standard section choice. For example, you could specify "["aws:pass"]" or you could specify "["aws:pass", “customActionName”]". For information about compatibility, see the custom action descriptions under CustomAction. * *(string) --* * **StatelessCustomActions** *(list) --* The custom action definitions that are available for use in the firewall policy's "StatelessDefaultActions" setting. You name each custom action that you define, and then you can use it by name in your default actions specifications. * *(dict) --* An optional, non-standard action to use for stateless packet handling. You can define this in addition to the standard action that you must specify. You define and name the custom actions that you want to be able to use, and then you reference them by name in your actions settings. You can use custom actions in the following places: * In a rule group's StatelessRulesAndCustomActions specification. The custom actions are available for use by name inside the "StatelessRulesAndCustomActions" where you define them. You can use them for your stateless rule actions to specify what to do with a packet that matches the rule's match attributes. * In a FirewallPolicy specification, in "StatelessCustomActions". The custom actions are available for use inside the policy where you define them. You can use them for the policy's default stateless actions settings to specify what to do with packets that don't match any of the policy's stateless rules. * **ActionName** *(string) --* **[REQUIRED]** The descriptive name of the custom action. You can't change the name of a custom action after you create it. * **ActionDefinition** *(dict) --* **[REQUIRED]** The custom action associated with the action name. * **PublishMetricAction** *(dict) --* Stateless inspection criteria that publishes the specified metrics to Amazon CloudWatch for the matching packet. This setting defines a CloudWatch dimension value to be published. You can pair this custom action with any of the standard stateless rule actions. For example, you could pair this in a rule action with the standard action that forwards the packet for stateful inspection. Then, when a packet matches the rule, Network Firewall publishes metrics for the packet and forwards it. * **Dimensions** *(list) --* **[REQUIRED]** * *(dict) --* The value to use in an Amazon CloudWatch custom metric dimension. This is used in the "PublishMetrics" CustomAction. A CloudWatch custom metric dimension is a name/value pair that's part of the identity of a metric. Network Firewall sets the dimension name to "CustomAction" and you provide the dimension value. For more information about CloudWatch custom metric dimensions, see Publishing Custom Metrics in the Amazon CloudWatch User Guide. * **Value** *(string) --* **[REQUIRED]** The value to use in the custom metric dimension. * **StatefulRuleGroupReferences** *(list) --* References to the stateful rule groups that are used in the policy. These define the inspection criteria in stateful rules. * *(dict) --* Identifier for a single stateful rule group, used in a firewall policy to refer to a rule group. * **ResourceArn** *(string) --* **[REQUIRED]** The Amazon Resource Name (ARN) of the stateful rule group. * **Priority** *(integer) --* An integer setting that indicates the order in which to run the stateful rule groups in a single FirewallPolicy. This setting only applies to firewall policies that specify the "STRICT_ORDER" rule order in the stateful engine options settings. Network Firewall evalutes each stateful rule group against a packet starting with the group that has the lowest priority setting. You must ensure that the priority settings are unique within each policy. You can change the priority settings of your rule groups at any time. To make it easier to insert rule groups later, number them so there's a wide range in between, for example use 100, 200, and so on. * **Override** *(dict) --* The action that allows the policy owner to override the behavior of the rule group within a policy. * **Action** *(string) --* The action that changes the rule group from "DROP" to "ALERT". This only applies to managed rule groups. * **DeepThreatInspection** *(boolean) --* Network Firewall plans to augment the active threat defense managed rule group with an additional deep threat inspection capability. When this capability is released, Amazon Web Services will analyze service logs of network traffic processed by these rule groups to identify threat indicators across customers. Amazon Web Services will use these threat indicators to improve the active threat defense managed rule groups and protect the security of Amazon Web Services customers and services. Note: Customers can opt-out of deep threat inspection at any time through the Network Firewall console or API. When customers opt out, Network Firewall will not use the network traffic processed by those customers' active threat defense rule groups for rule group improvement. * **StatefulDefaultActions** *(list) --* The default actions to take on a packet that doesn't match any stateful rules. The stateful default action is optional, and is only valid when using the strict rule order. Valid values of the stateful default action: * aws:drop_strict * aws:drop_established * aws:alert_strict * aws:alert_established For more information, see Strict evaluation order in the *Network Firewall Developer Guide*. * *(string) --* * **StatefulEngineOptions** *(dict) --* Additional options governing how Network Firewall handles stateful rules. The stateful rule groups that you use in your policy must have stateful rule options settings that are compatible with these settings. * **RuleOrder** *(string) --* Indicates how to manage the order of stateful rule evaluation for the policy. "STRICT_ORDER" is the recommended option, but "DEFAULT_ACTION_ORDER" is the default option. With "STRICT_ORDER", provide your rules in the order that you want them to be evaluated. You can then choose one or more default actions for packets that don't match any rules. Choose "STRICT_ORDER" to have the stateful rules engine determine the evaluation order of your rules. The default action for this rule order is "PASS", followed by "DROP", "REJECT", and "ALERT" actions. Stateful rules are provided to the rule engine as Suricata compatible strings, and Suricata evaluates them based on your settings. For more information, see Evaluation order for stateful rules in the *Network Firewall Developer Guide*. * **StreamExceptionPolicy** *(string) --* Configures how Network Firewall processes traffic when a network connection breaks midstream. Network connections can break due to disruptions in external networks or within the firewall itself. * "DROP" - Network Firewall fails closed and drops all subsequent traffic going to the firewall. This is the default behavior. * "CONTINUE" - Network Firewall continues to apply rules to the subsequent traffic without context from traffic before the break. This impacts the behavior of rules that depend on this context. For example, if you have a stateful rule to "drop http" traffic, Network Firewall won't match the traffic for this rule because the service won't have the context from session initialization defining the application layer protocol as HTTP. However, this behavior is rule dependent—a TCP- layer rule using a "flow:stateless" rule would still match, as would the "aws:drop_strict" default action. * "REJECT" - Network Firewall fails closed and drops all subsequent traffic going to the firewall. Network Firewall also sends a TCP reject packet back to your client so that the client can immediately establish a new session. Network Firewall will have context about the new session and will apply rules to the subsequent traffic. * **FlowTimeouts** *(dict) --* Configures the amount of time that can pass without any traffic sent through the firewall before the firewall determines that the connection is idle. * **TcpIdleTimeoutSeconds** *(integer) --* The number of seconds that can pass without any TCP traffic sent through the firewall before the firewall determines that the connection is idle. After the idle timeout passes, data packets are dropped, however, the next TCP SYN packet is considered a new flow and is processed by the firewall. Clients or targets can use TCP keepalive packets to reset the idle timeout. You can define the "TcpIdleTimeoutSeconds" value to be between 60 and 6000 seconds. If no value is provided, it defaults to 350 seconds. * **TLSInspectionConfigurationArn** *(string) --* The Amazon Resource Name (ARN) of the TLS inspection configuration. * **PolicyVariables** *(dict) --* Contains variables that you can use to override default Suricata settings in your firewall policy. * **RuleVariables** *(dict) --* The IPv4 or IPv6 addresses in CIDR notation to use for the Suricata "HOME_NET" variable. If your firewall uses an inspection VPC, you might want to override the "HOME_NET" variable with the CIDRs of your home networks. If you don't override "HOME_NET" with your own CIDRs, Network Firewall by default uses the CIDR of your inspection VPC. * *(string) --* * *(dict) --* A list of IP addresses and address ranges, in CIDR notation. This is part of a RuleVariables. * **Definition** *(list) --* **[REQUIRED]** The list of IP addresses and address ranges, in CIDR notation. * *(string) --* * **Description** (*string*) -- A description of the firewall policy. * **Tags** (*list*) -- The key:value pairs to associate with the resource. * *(dict) --* A key:value pair associated with an Amazon Web Services resource. The key:value pair can be anything you define. Typically, the tag key represents a category (such as "environment") and the tag value represents a specific value within that category (such as "test," "development," or "production"). You can add up to 50 tags to each Amazon Web Services resource. * **Key** *(string) --* **[REQUIRED]** The part of the key:value pair that defines a tag. You can use a tag key to describe a category of information, such as "customer." Tag keys are case-sensitive. * **Value** *(string) --* **[REQUIRED]** The part of the key:value pair that defines a tag. You can use a tag value to describe a specific value within a category, such as "companyA" or "companyB." Tag values are case-sensitive. * **DryRun** (*boolean*) -- Indicates whether you want Network Firewall to just check the validity of the request, rather than run the request. If set to "TRUE", Network Firewall checks whether the request can run successfully, but doesn't actually make the requested changes. The call returns the value that the request would return if you ran it with dry run set to "FALSE", but doesn't make additions or changes to your resources. This option allows you to make sure that you have the required permissions to run the request and that your request parameters are valid. If set to "FALSE", Network Firewall makes the requested changes to your resources. * **EncryptionConfiguration** (*dict*) -- A complex type that contains settings for encryption of your firewall policy resources. * **KeyId** *(string) --* The ID of the Amazon Web Services Key Management Service (KMS) customer managed key. You can use any of the key identifiers that KMS supports, unless you're using a key that's managed by another account. If you're using a key managed by another account, then specify the key ARN. For more information, see Key ID in the *Amazon Web Services KMS Developer Guide*. * **Type** *(string) --* **[REQUIRED]** The type of Amazon Web Services KMS key to use for encryption of your Network Firewall resources. Return type: dict Returns: **Response Syntax** { 'UpdateToken': 'string', 'FirewallPolicyResponse': { 'FirewallPolicyName': 'string', 'FirewallPolicyArn': 'string', 'FirewallPolicyId': 'string', 'Description': 'string', 'FirewallPolicyStatus': 'ACTIVE'|'DELETING'|'ERROR', 'Tags': [ { 'Key': 'string', 'Value': 'string' }, ], 'ConsumedStatelessRuleCapacity': 123, 'ConsumedStatefulRuleCapacity': 123, 'NumberOfAssociations': 123, 'EncryptionConfiguration': { 'KeyId': 'string', 'Type': 'CUSTOMER_KMS'|'AWS_OWNED_KMS_KEY' }, 'LastModifiedTime': datetime(2015, 1, 1) } } **Response Structure** * *(dict) --* * **UpdateToken** *(string) --* A token used for optimistic locking. Network Firewall returns a token to your requests that access the firewall policy. The token marks the state of the policy resource at the time of the request. To make changes to the policy, you provide the token in your request. Network Firewall uses the token to ensure that the policy hasn't changed since you last retrieved it. If it has changed, the operation fails with an "InvalidTokenException". If this happens, retrieve the firewall policy again to get a current copy of it with current token. Reapply your changes as needed, then try the operation again using the new token. * **FirewallPolicyResponse** *(dict) --* The high-level properties of a firewall policy. This, along with the FirewallPolicy, define the policy. You can retrieve all objects for a firewall policy by calling DescribeFirewallPolicy. * **FirewallPolicyName** *(string) --* The descriptive name of the firewall policy. You can't change the name of a firewall policy after you create it. * **FirewallPolicyArn** *(string) --* The Amazon Resource Name (ARN) of the firewall policy. Note: If this response is for a create request that had "DryRun" set to "TRUE", then this ARN is a placeholder that isn't attached to a valid resource. * **FirewallPolicyId** *(string) --* The unique identifier for the firewall policy. * **Description** *(string) --* A description of the firewall policy. * **FirewallPolicyStatus** *(string) --* The current status of the firewall policy. You can retrieve this for a firewall policy by calling DescribeFirewallPolicy and providing the firewall policy's name or ARN. * **Tags** *(list) --* The key:value pairs to associate with the resource. * *(dict) --* A key:value pair associated with an Amazon Web Services resource. The key:value pair can be anything you define. Typically, the tag key represents a category (such as "environment") and the tag value represents a specific value within that category (such as "test," "development," or "production"). You can add up to 50 tags to each Amazon Web Services resource. * **Key** *(string) --* The part of the key:value pair that defines a tag. You can use a tag key to describe a category of information, such as "customer." Tag keys are case- sensitive. * **Value** *(string) --* The part of the key:value pair that defines a tag. You can use a tag value to describe a specific value within a category, such as "companyA" or "companyB." Tag values are case-sensitive. * **ConsumedStatelessRuleCapacity** *(integer) --* The number of capacity units currently consumed by the policy's stateless rules. * **ConsumedStatefulRuleCapacity** *(integer) --* The number of capacity units currently consumed by the policy's stateful rules. * **NumberOfAssociations** *(integer) --* The number of firewalls that are associated with this firewall policy. * **EncryptionConfiguration** *(dict) --* A complex type that contains the Amazon Web Services KMS encryption configuration settings for your firewall policy. * **KeyId** *(string) --* The ID of the Amazon Web Services Key Management Service (KMS) customer managed key. You can use any of the key identifiers that KMS supports, unless you're using a key that's managed by another account. If you're using a key managed by another account, then specify the key ARN. For more information, see Key ID in the *Amazon Web Services KMS Developer Guide*. * **Type** *(string) --* The type of Amazon Web Services KMS key to use for encryption of your Network Firewall resources. * **LastModifiedTime** *(datetime) --* The last time that the firewall policy was changed. **Exceptions** * "NetworkFirewall.Client.exceptions.LimitExceededException" * "NetworkFirewall.Client.exceptions.InvalidRequestException" * "NetworkFirewall.Client.exceptions.ThrottlingException" * "NetworkFirewall.Client.exceptions.InternalServerError" * "NetworkFirewall.Client.exceptions.InsufficientCapacityException" NetworkFirewall / Client / delete_tls_inspection_configuration delete_tls_inspection_configuration *********************************** NetworkFirewall.Client.delete_tls_inspection_configuration(**kwargs) Deletes the specified TLSInspectionConfiguration. See also: AWS API Documentation **Request Syntax** response = client.delete_tls_inspection_configuration( TLSInspectionConfigurationArn='string', TLSInspectionConfigurationName='string' ) Parameters: * **TLSInspectionConfigurationArn** (*string*) -- The Amazon Resource Name (ARN) of the TLS inspection configuration. You must specify the ARN or the name, and you can specify both. * **TLSInspectionConfigurationName** (*string*) -- The descriptive name of the TLS inspection configuration. You can't change the name of a TLS inspection configuration after you create it. You must specify the ARN or the name, and you can specify both. Return type: dict Returns: **Response Syntax** { 'TLSInspectionConfigurationResponse': { 'TLSInspectionConfigurationArn': 'string', 'TLSInspectionConfigurationName': 'string', 'TLSInspectionConfigurationId': 'string', 'TLSInspectionConfigurationStatus': 'ACTIVE'|'DELETING'|'ERROR', 'Description': 'string', 'Tags': [ { 'Key': 'string', 'Value': 'string' }, ], 'LastModifiedTime': datetime(2015, 1, 1), 'NumberOfAssociations': 123, 'EncryptionConfiguration': { 'KeyId': 'string', 'Type': 'CUSTOMER_KMS'|'AWS_OWNED_KMS_KEY' }, 'Certificates': [ { 'CertificateArn': 'string', 'CertificateSerial': 'string', 'Status': 'string', 'StatusMessage': 'string' }, ], 'CertificateAuthority': { 'CertificateArn': 'string', 'CertificateSerial': 'string', 'Status': 'string', 'StatusMessage': 'string' } } } **Response Structure** * *(dict) --* * **TLSInspectionConfigurationResponse** *(dict) --* The high-level properties of a TLS inspection configuration. This, along with the TLSInspectionConfiguration, define the TLS inspection configuration. You can retrieve all objects for a TLS inspection configuration by calling DescribeTLSInspectionConfiguration. * **TLSInspectionConfigurationArn** *(string) --* The Amazon Resource Name (ARN) of the TLS inspection configuration. * **TLSInspectionConfigurationName** *(string) --* The descriptive name of the TLS inspection configuration. You can't change the name of a TLS inspection configuration after you create it. * **TLSInspectionConfigurationId** *(string) --* A unique identifier for the TLS inspection configuration. This ID is returned in the responses to create and list commands. You provide it to operations such as update and delete. * **TLSInspectionConfigurationStatus** *(string) --* Detailed information about the current status of a TLSInspectionConfiguration. You can retrieve this for a TLS inspection configuration by calling DescribeTLSInspectionConfiguration and providing the TLS inspection configuration name and ARN. * **Description** *(string) --* A description of the TLS inspection configuration. * **Tags** *(list) --* The key:value pairs to associate with the resource. * *(dict) --* A key:value pair associated with an Amazon Web Services resource. The key:value pair can be anything you define. Typically, the tag key represents a category (such as "environment") and the tag value represents a specific value within that category (such as "test," "development," or "production"). You can add up to 50 tags to each Amazon Web Services resource. * **Key** *(string) --* The part of the key:value pair that defines a tag. You can use a tag key to describe a category of information, such as "customer." Tag keys are case- sensitive. * **Value** *(string) --* The part of the key:value pair that defines a tag. You can use a tag value to describe a specific value within a category, such as "companyA" or "companyB." Tag values are case-sensitive. * **LastModifiedTime** *(datetime) --* The last time that the TLS inspection configuration was changed. * **NumberOfAssociations** *(integer) --* The number of firewall policies that use this TLS inspection configuration. * **EncryptionConfiguration** *(dict) --* A complex type that contains the Amazon Web Services KMS encryption configuration settings for your TLS inspection configuration. * **KeyId** *(string) --* The ID of the Amazon Web Services Key Management Service (KMS) customer managed key. You can use any of the key identifiers that KMS supports, unless you're using a key that's managed by another account. If you're using a key managed by another account, then specify the key ARN. For more information, see Key ID in the *Amazon Web Services KMS Developer Guide*. * **Type** *(string) --* The type of Amazon Web Services KMS key to use for encryption of your Network Firewall resources. * **Certificates** *(list) --* A list of the certificates associated with the TLS inspection configuration. * *(dict) --* Contains metadata about an Certificate Manager certificate. * **CertificateArn** *(string) --* The Amazon Resource Name (ARN) of the certificate. * **CertificateSerial** *(string) --* The serial number of the certificate. * **Status** *(string) --* The status of the certificate. * **StatusMessage** *(string) --* Contains details about the certificate status, including information about certificate errors. * **CertificateAuthority** *(dict) --* Contains metadata about an Certificate Manager certificate. * **CertificateArn** *(string) --* The Amazon Resource Name (ARN) of the certificate. * **CertificateSerial** *(string) --* The serial number of the certificate. * **Status** *(string) --* The status of the certificate. * **StatusMessage** *(string) --* Contains details about the certificate status, including information about certificate errors. **Exceptions** * "NetworkFirewall.Client.exceptions.InvalidRequestException" * "NetworkFirewall.Client.exceptions.InternalServerError" * "NetworkFirewall.Client.exceptions.ResourceNotFoundException" * "NetworkFirewall.Client.exceptions.ThrottlingException" * "NetworkFirewall.Client.exceptions.InvalidOperationException" NetworkFirewall / Client / update_firewall_delete_protection update_firewall_delete_protection ********************************* NetworkFirewall.Client.update_firewall_delete_protection(**kwargs) Modifies the flag, "DeleteProtection", which indicates whether it is possible to delete the firewall. If the flag is set to "TRUE", the firewall is protected against deletion. This setting helps protect against accidentally deleting a firewall that's in use. See also: AWS API Documentation **Request Syntax** response = client.update_firewall_delete_protection( UpdateToken='string', FirewallArn='string', FirewallName='string', DeleteProtection=True|False ) Parameters: * **UpdateToken** (*string*) -- An optional token that you can use for optimistic locking. Network Firewall returns a token to your requests that access the firewall. The token marks the state of the firewall resource at the time of the request. To make an unconditional change to the firewall, omit the token in your update request. Without the token, Network Firewall performs your updates regardless of whether the firewall has changed since you last retrieved it. To make a conditional change to the firewall, provide the token in your update request. Network Firewall uses the token to ensure that the firewall hasn't changed since you last retrieved it. If it has changed, the operation fails with an "InvalidTokenException". If this happens, retrieve the firewall again to get a current copy of it with a new token. Reapply your changes as needed, then try the operation again using the new token. * **FirewallArn** (*string*) -- The Amazon Resource Name (ARN) of the firewall. You must specify the ARN or the name, and you can specify both. * **FirewallName** (*string*) -- The descriptive name of the firewall. You can't change the name of a firewall after you create it. You must specify the ARN or the name, and you can specify both. * **DeleteProtection** (*boolean*) -- **[REQUIRED]** A flag indicating whether it is possible to delete the firewall. A setting of "TRUE" indicates that the firewall is protected against deletion. Use this setting to protect against accidentally deleting a firewall that is in use. When you create a firewall, the operation initializes this flag to "TRUE". Return type: dict Returns: **Response Syntax** { 'FirewallArn': 'string', 'FirewallName': 'string', 'DeleteProtection': True|False, 'UpdateToken': 'string' } **Response Structure** * *(dict) --* * **FirewallArn** *(string) --* The Amazon Resource Name (ARN) of the firewall. * **FirewallName** *(string) --* The descriptive name of the firewall. You can't change the name of a firewall after you create it. * **DeleteProtection** *(boolean) --* A flag indicating whether it is possible to delete the firewall. A setting of "TRUE" indicates that the firewall is protected against deletion. Use this setting to protect against accidentally deleting a firewall that is in use. When you create a firewall, the operation initializes this flag to "TRUE". * **UpdateToken** *(string) --* An optional token that you can use for optimistic locking. Network Firewall returns a token to your requests that access the firewall. The token marks the state of the firewall resource at the time of the request. To make an unconditional change to the firewall, omit the token in your update request. Without the token, Network Firewall performs your updates regardless of whether the firewall has changed since you last retrieved it. To make a conditional change to the firewall, provide the token in your update request. Network Firewall uses the token to ensure that the firewall hasn't changed since you last retrieved it. If it has changed, the operation fails with an "InvalidTokenException". If this happens, retrieve the firewall again to get a current copy of it with a new token. Reapply your changes as needed, then try the operation again using the new token. **Exceptions** * "NetworkFirewall.Client.exceptions.InvalidRequestException" * "NetworkFirewall.Client.exceptions.InternalServerError" * "NetworkFirewall.Client.exceptions.ResourceNotFoundException" * "NetworkFirewall.Client.exceptions.ThrottlingException" * "NetworkFirewall.Client.exceptions.InvalidTokenException" * "NetworkFirewall.Client.exceptions.ResourceOwnerCheckException" NetworkFirewall / Client / tag_resource tag_resource ************ NetworkFirewall.Client.tag_resource(**kwargs) Adds the specified tags to the specified resource. Tags are key:value pairs that you can use to categorize and manage your resources, for purposes like billing. For example, you might set the tag key to "customer" and the value to the customer name or ID. You can specify one or more tags to add to each Amazon Web Services resource, up to 50 tags for a resource. You can tag the Amazon Web Services resources that you manage through Network Firewall: firewalls, firewall policies, and rule groups. See also: AWS API Documentation **Request Syntax** response = client.tag_resource( ResourceArn='string', Tags=[ { 'Key': 'string', 'Value': 'string' }, ] ) Parameters: * **ResourceArn** (*string*) -- **[REQUIRED]** The Amazon Resource Name (ARN) of the resource. * **Tags** (*list*) -- **[REQUIRED]** * *(dict) --* A key:value pair associated with an Amazon Web Services resource. The key:value pair can be anything you define. Typically, the tag key represents a category (such as "environment") and the tag value represents a specific value within that category (such as "test," "development," or "production"). You can add up to 50 tags to each Amazon Web Services resource. * **Key** *(string) --* **[REQUIRED]** The part of the key:value pair that defines a tag. You can use a tag key to describe a category of information, such as "customer." Tag keys are case-sensitive. * **Value** *(string) --* **[REQUIRED]** The part of the key:value pair that defines a tag. You can use a tag value to describe a specific value within a category, such as "companyA" or "companyB." Tag values are case-sensitive. Return type: dict Returns: **Response Syntax** {} **Response Structure** * *(dict) --* **Exceptions** * "NetworkFirewall.Client.exceptions.ThrottlingException" * "NetworkFirewall.Client.exceptions.InternalServerError" * "NetworkFirewall.Client.exceptions.ResourceNotFoundException" * "NetworkFirewall.Client.exceptions.InvalidRequestException" NetworkFirewall / Client / reject_network_firewall_transit_gateway_attachment reject_network_firewall_transit_gateway_attachment ************************************************** NetworkFirewall.Client.reject_network_firewall_transit_gateway_attachment(**kwargs) Rejects a transit gateway attachment request for Network Firewall. When you reject the attachment request, Network Firewall cancels the creation of routing components between the transit gateway and firewall endpoints. Only the firewall owner can reject the attachment. After rejection, no traffic will flow through the firewall endpoints for this attachment. Use DescribeFirewall to monitor the rejection status. To accept the attachment instead of rejecting it, use AcceptNetworkFirewallTransitGatewayAttachment. Note: Once rejected, you cannot reverse this action. To establish connectivity, you must create a new transit gateway-attached firewall. See also: AWS API Documentation **Request Syntax** response = client.reject_network_firewall_transit_gateway_attachment( TransitGatewayAttachmentId='string' ) Parameters: **TransitGatewayAttachmentId** (*string*) -- **[REQUIRED]** Required. The unique identifier of the transit gateway attachment to reject. This ID is returned in the response when creating a transit gateway-attached firewall. Return type: dict Returns: **Response Syntax** { 'TransitGatewayAttachmentId': 'string', 'TransitGatewayAttachmentStatus': 'CREATING'|'DELETING'|'DELETED'|'FAILED'|'ERROR'|'READY'|'PENDING_ACCEPTANCE'|'REJECTING'|'REJECTED' } **Response Structure** * *(dict) --* * **TransitGatewayAttachmentId** *(string) --* The unique identifier of the transit gateway attachment that was rejected. * **TransitGatewayAttachmentStatus** *(string) --* The current status of the transit gateway attachment. Valid values are: * "CREATING" - The attachment is being created * "DELETING" - The attachment is being deleted * "DELETED" - The attachment has been deleted * "FAILED" - The attachment creation has failed and cannot be recovered * "ERROR" - The attachment is in an error state that might be recoverable * "READY" - The attachment is active and processing traffic * "PENDING_ACCEPTANCE" - The attachment is waiting to be accepted * "REJECTING" - The attachment is in the process of being rejected * "REJECTED" - The attachment has been rejected For information about troubleshooting endpoint failures, see Troubleshooting firewall endpoint failures in the *Network Firewall Developer Guide*. **Exceptions** * "NetworkFirewall.Client.exceptions.InvalidRequestException" * "NetworkFirewall.Client.exceptions.InternalServerError" * "NetworkFirewall.Client.exceptions.ResourceNotFoundException" * "NetworkFirewall.Client.exceptions.ThrottlingException" NetworkFirewall / Client / update_firewall_encryption_configuration update_firewall_encryption_configuration **************************************** NetworkFirewall.Client.update_firewall_encryption_configuration(**kwargs) A complex type that contains settings for encryption of your firewall resources. See also: AWS API Documentation **Request Syntax** response = client.update_firewall_encryption_configuration( UpdateToken='string', FirewallArn='string', FirewallName='string', EncryptionConfiguration={ 'KeyId': 'string', 'Type': 'CUSTOMER_KMS'|'AWS_OWNED_KMS_KEY' } ) Parameters: * **UpdateToken** (*string*) -- An optional token that you can use for optimistic locking. Network Firewall returns a token to your requests that access the firewall. The token marks the state of the firewall resource at the time of the request. To make an unconditional change to the firewall, omit the token in your update request. Without the token, Network Firewall performs your updates regardless of whether the firewall has changed since you last retrieved it. To make a conditional change to the firewall, provide the token in your update request. Network Firewall uses the token to ensure that the firewall hasn't changed since you last retrieved it. If it has changed, the operation fails with an "InvalidTokenException". If this happens, retrieve the firewall again to get a current copy of it with a new token. Reapply your changes as needed, then try the operation again using the new token. * **FirewallArn** (*string*) -- The Amazon Resource Name (ARN) of the firewall. * **FirewallName** (*string*) -- The descriptive name of the firewall. You can't change the name of a firewall after you create it. * **EncryptionConfiguration** (*dict*) -- A complex type that contains optional Amazon Web Services Key Management Service (KMS) encryption settings for your Network Firewall resources. Your data is encrypted by default with an Amazon Web Services owned key that Amazon Web Services owns and manages for you. You can use either the Amazon Web Services owned key, or provide your own customer managed key. To learn more about KMS encryption of your Network Firewall resources, see Encryption at rest with Amazon Web Services Key Managment Service in the *Network Firewall Developer Guide*. * **KeyId** *(string) --* The ID of the Amazon Web Services Key Management Service (KMS) customer managed key. You can use any of the key identifiers that KMS supports, unless you're using a key that's managed by another account. If you're using a key managed by another account, then specify the key ARN. For more information, see Key ID in the *Amazon Web Services KMS Developer Guide*. * **Type** *(string) --* **[REQUIRED]** The type of Amazon Web Services KMS key to use for encryption of your Network Firewall resources. Return type: dict Returns: **Response Syntax** { 'FirewallArn': 'string', 'FirewallName': 'string', 'UpdateToken': 'string', 'EncryptionConfiguration': { 'KeyId': 'string', 'Type': 'CUSTOMER_KMS'|'AWS_OWNED_KMS_KEY' } } **Response Structure** * *(dict) --* * **FirewallArn** *(string) --* The Amazon Resource Name (ARN) of the firewall. * **FirewallName** *(string) --* The descriptive name of the firewall. You can't change the name of a firewall after you create it. * **UpdateToken** *(string) --* An optional token that you can use for optimistic locking. Network Firewall returns a token to your requests that access the firewall. The token marks the state of the firewall resource at the time of the request. To make an unconditional change to the firewall, omit the token in your update request. Without the token, Network Firewall performs your updates regardless of whether the firewall has changed since you last retrieved it. To make a conditional change to the firewall, provide the token in your update request. Network Firewall uses the token to ensure that the firewall hasn't changed since you last retrieved it. If it has changed, the operation fails with an "InvalidTokenException". If this happens, retrieve the firewall again to get a current copy of it with a new token. Reapply your changes as needed, then try the operation again using the new token. * **EncryptionConfiguration** *(dict) --* A complex type that contains optional Amazon Web Services Key Management Service (KMS) encryption settings for your Network Firewall resources. Your data is encrypted by default with an Amazon Web Services owned key that Amazon Web Services owns and manages for you. You can use either the Amazon Web Services owned key, or provide your own customer managed key. To learn more about KMS encryption of your Network Firewall resources, see Encryption at rest with Amazon Web Services Key Managment Service in the *Network Firewall Developer Guide*. * **KeyId** *(string) --* The ID of the Amazon Web Services Key Management Service (KMS) customer managed key. You can use any of the key identifiers that KMS supports, unless you're using a key that's managed by another account. If you're using a key managed by another account, then specify the key ARN. For more information, see Key ID in the *Amazon Web Services KMS Developer Guide*. * **Type** *(string) --* The type of Amazon Web Services KMS key to use for encryption of your Network Firewall resources. **Exceptions** * "NetworkFirewall.Client.exceptions.InvalidRequestException" * "NetworkFirewall.Client.exceptions.InternalServerError" * "NetworkFirewall.Client.exceptions.ResourceNotFoundException" * "NetworkFirewall.Client.exceptions.ThrottlingException" * "NetworkFirewall.Client.exceptions.InvalidTokenException" * "NetworkFirewall.Client.exceptions.ResourceOwnerCheckException" NetworkFirewall / Client / create_rule_group create_rule_group ***************** NetworkFirewall.Client.create_rule_group(**kwargs) Creates the specified stateless or stateful rule group, which includes the rules for network traffic inspection, a capacity setting, and tags. You provide your rule group specification in your request using either "RuleGroup" or "Rules". See also: AWS API Documentation **Request Syntax** response = client.create_rule_group( RuleGroupName='string', RuleGroup={ 'RuleVariables': { 'IPSets': { 'string': { 'Definition': [ 'string', ] } }, 'PortSets': { 'string': { 'Definition': [ 'string', ] } } }, 'ReferenceSets': { 'IPSetReferences': { 'string': { 'ReferenceArn': 'string' } } }, 'RulesSource': { 'RulesString': 'string', 'RulesSourceList': { 'Targets': [ 'string', ], 'TargetTypes': [ 'TLS_SNI'|'HTTP_HOST', ], 'GeneratedRulesType': 'ALLOWLIST'|'DENYLIST' }, 'StatefulRules': [ { 'Action': 'PASS'|'DROP'|'ALERT'|'REJECT', 'Header': { 'Protocol': 'IP'|'TCP'|'UDP'|'ICMP'|'HTTP'|'FTP'|'TLS'|'SMB'|'DNS'|'DCERPC'|'SSH'|'SMTP'|'IMAP'|'MSN'|'KRB5'|'IKEV2'|'TFTP'|'NTP'|'DHCP'|'HTTP2'|'QUIC', 'Source': 'string', 'SourcePort': 'string', 'Direction': 'FORWARD'|'ANY', 'Destination': 'string', 'DestinationPort': 'string' }, 'RuleOptions': [ { 'Keyword': 'string', 'Settings': [ 'string', ] }, ] }, ], 'StatelessRulesAndCustomActions': { 'StatelessRules': [ { 'RuleDefinition': { 'MatchAttributes': { 'Sources': [ { 'AddressDefinition': 'string' }, ], 'Destinations': [ { 'AddressDefinition': 'string' }, ], 'SourcePorts': [ { 'FromPort': 123, 'ToPort': 123 }, ], 'DestinationPorts': [ { 'FromPort': 123, 'ToPort': 123 }, ], 'Protocols': [ 123, ], 'TCPFlags': [ { 'Flags': [ 'FIN'|'SYN'|'RST'|'PSH'|'ACK'|'URG'|'ECE'|'CWR', ], 'Masks': [ 'FIN'|'SYN'|'RST'|'PSH'|'ACK'|'URG'|'ECE'|'CWR', ] }, ] }, 'Actions': [ 'string', ] }, 'Priority': 123 }, ], 'CustomActions': [ { 'ActionName': 'string', 'ActionDefinition': { 'PublishMetricAction': { 'Dimensions': [ { 'Value': 'string' }, ] } } }, ] } }, 'StatefulRuleOptions': { 'RuleOrder': 'DEFAULT_ACTION_ORDER'|'STRICT_ORDER' } }, Rules='string', Type='STATELESS'|'STATEFUL', Description='string', Capacity=123, Tags=[ { 'Key': 'string', 'Value': 'string' }, ], DryRun=True|False, EncryptionConfiguration={ 'KeyId': 'string', 'Type': 'CUSTOMER_KMS'|'AWS_OWNED_KMS_KEY' }, SourceMetadata={ 'SourceArn': 'string', 'SourceUpdateToken': 'string' }, AnalyzeRuleGroup=True|False, SummaryConfiguration={ 'RuleOptions': [ 'SID'|'MSG'|'METADATA', ] } ) Parameters: * **RuleGroupName** (*string*) -- **[REQUIRED]** The descriptive name of the rule group. You can't change the name of a rule group after you create it. * **RuleGroup** (*dict*) -- An object that defines the rule group rules. Note: You must provide either this rule group setting or a "Rules" setting, but not both. * **RuleVariables** *(dict) --* Settings that are available for use in the rules in the rule group. You can only use these for stateful rule groups. * **IPSets** *(dict) --* A list of IP addresses and address ranges, in CIDR notation. * *(string) --* * *(dict) --* A list of IP addresses and address ranges, in CIDR notation. This is part of a RuleVariables. * **Definition** *(list) --* **[REQUIRED]** The list of IP addresses and address ranges, in CIDR notation. * *(string) --* * **PortSets** *(dict) --* A list of port ranges. * *(string) --* * *(dict) --* A set of port ranges for use in the rules in a rule group. * **Definition** *(list) --* The set of port ranges. * *(string) --* * **ReferenceSets** *(dict) --* The list of a rule group's reference sets. * **IPSetReferences** *(dict) --* The list of IP set references. * *(string) --* * *(dict) --* Configures one or more IP set references for a Suricata-compatible rule group. This is used in CreateRuleGroup or UpdateRuleGroup. An IP set reference is a rule variable that references resources that you create and manage in another Amazon Web Services service, such as an Amazon VPC prefix list. Network Firewall IP set references enable you to dynamically update the contents of your rules. When you create, update, or delete the resource you are referencing in your rule, Network Firewall automatically updates the rule's content with the changes. For more information about IP set references in Network Firewall, see Using IP set references in the *Network Firewall Developer Guide*. Network Firewall currently supports Amazon VPC prefix lists and resource groups in IP set references. * **ReferenceArn** *(string) --* The Amazon Resource Name (ARN) of the resource that you are referencing in your rule group. * **RulesSource** *(dict) --* **[REQUIRED]** The stateful rules or stateless rules for the rule group. * **RulesString** *(string) --* Stateful inspection criteria, provided in Suricata compatible rules. Suricata is an open-source threat detection framework that includes a standard rule-based language for network traffic inspection. These rules contain the inspection criteria and the action to take for traffic that matches the criteria, so this type of rule group doesn't have a separate action setting. Note: You can't use the "priority" keyword if the "RuleOrder" option in StatefulRuleOptions is set to "STRICT_ORDER". * **RulesSourceList** *(dict) --* Stateful inspection criteria for a domain list rule group. * **Targets** *(list) --* **[REQUIRED]** The domains that you want to inspect for in your traffic flows. Valid domain specifications are the following: * Explicit names. For example, "abc.example.com" matches only the domain "abc.example.com". * Names that use a domain wildcard, which you indicate with an initial ' "."'. For example, ".example.com" matches "example.com" and matches all subdomains of "example.com", such as "abc.example.com" and "www.example.com". * *(string) --* * **TargetTypes** *(list) --* **[REQUIRED]** The protocols you want to inspect. Specify "TLS_SNI" for "HTTPS". Specify "HTTP_HOST" for "HTTP". You can specify either or both. * *(string) --* * **GeneratedRulesType** *(string) --* **[REQUIRED]** Whether you want to allow or deny access to the domains in your target list. * **StatefulRules** *(list) --* An array of individual stateful rules inspection criteria to be used together in a stateful rule group. Use this option to specify simple Suricata rules with protocol, source and destination, ports, direction, and rule options. For information about the Suricata "Rules" format, see Rules Format. * *(dict) --* A single Suricata rules specification, for use in a stateful rule group. Use this option to specify a simple Suricata rule with protocol, source and destination, ports, direction, and rule options. For information about the Suricata "Rules" format, see Rules Format. * **Action** *(string) --* **[REQUIRED]** Defines what Network Firewall should do with the packets in a traffic flow when the flow matches the stateful rule criteria. For all actions, Network Firewall performs the specified action and discontinues stateful inspection of the traffic flow. The actions for a stateful rule are defined as follows: * **PASS** - Permits the packets to go to the intended destination. * **DROP** - Blocks the packets from going to the intended destination and sends an alert log message, if alert logging is configured in the Firewall LoggingConfiguration. * **ALERT** - Sends an alert log message, if alert logging is configured in the Firewall LoggingConfiguration. You can use this action to test a rule that you intend to use to drop traffic. You can enable the rule with "ALERT" action, verify in the logs that the rule is filtering as you want, then change the action to "DROP". * **REJECT** - Drops traffic that matches the conditions of the stateful rule, and sends a TCP reset packet back to sender of the packet. A TCP reset packet is a packet with no payload and an RST bit contained in the TCP header flags. REJECT is available only for TCP traffic. This option doesn't support FTP or IMAP protocols. * **Header** *(dict) --* **[REQUIRED]** The stateful inspection criteria for this rule, used to inspect traffic flows. * **Protocol** *(string) --* **[REQUIRED]** The protocol to inspect for. To specify all, you can use "IP", because all traffic on Amazon Web Services and on the internet is IP. * **Source** *(string) --* **[REQUIRED]** The source IP address or address range to inspect for, in CIDR notation. To match with any address, specify "ANY". Specify an IP address or a block of IP addresses in Classless Inter-Domain Routing (CIDR) notation. Network Firewall supports all address ranges for IPv4 and IPv6. Examples: * To configure Network Firewall to inspect for the IP address 192.0.2.44, specify "192.0.2.44/32". * To configure Network Firewall to inspect for IP addresses from 192.0.2.0 to 192.0.2.255, specify "192.0.2.0/24". * To configure Network Firewall to inspect for the IP address 1111:0000:0000:0000:0000:0000:0000:0111, specify "1111:0000:0000:0000:0000:0000:0000:0111/128". * To configure Network Firewall to inspect for IP addresses from 1111:0000:0000:0000:0000:0000:0000:0000 to 1111:0000:0000:0000:ffff:ffff:ffff:ffff, specify "1111:0000:0000:0000:0000:0000:0000:0000/64". For more information about CIDR notation, see the Wikipedia entry Classless Inter-Domain Routing. * **SourcePort** *(string) --* **[REQUIRED]** The source port to inspect for. You can specify an individual port, for example "1994" and you can specify a port range, for example "1990:1994". To match with any port, specify "ANY". * **Direction** *(string) --* **[REQUIRED]** The direction of traffic flow to inspect. If set to "ANY", the inspection matches bidirectional traffic, both from the source to the destination and from the destination to the source. If set to "FORWARD", the inspection only matches traffic going from the source to the destination. * **Destination** *(string) --* **[REQUIRED]** The destination IP address or address range to inspect for, in CIDR notation. To match with any address, specify "ANY". Specify an IP address or a block of IP addresses in Classless Inter-Domain Routing (CIDR) notation. Network Firewall supports all address ranges for IPv4 and IPv6. Examples: * To configure Network Firewall to inspect for the IP address 192.0.2.44, specify "192.0.2.44/32". * To configure Network Firewall to inspect for IP addresses from 192.0.2.0 to 192.0.2.255, specify "192.0.2.0/24". * To configure Network Firewall to inspect for the IP address 1111:0000:0000:0000:0000:0000:0000:0111, specify "1111:0000:0000:0000:0000:0000:0000:0111/128". * To configure Network Firewall to inspect for IP addresses from 1111:0000:0000:0000:0000:0000:0000:0000 to 1111:0000:0000:0000:ffff:ffff:ffff:ffff, specify "1111:0000:0000:0000:0000:0000:0000:0000/64". For more information about CIDR notation, see the Wikipedia entry Classless Inter-Domain Routing. * **DestinationPort** *(string) --* **[REQUIRED]** The destination port to inspect for. You can specify an individual port, for example "1994" and you can specify a port range, for example "1990:1994". To match with any port, specify "ANY". * **RuleOptions** *(list) --* **[REQUIRED]** Additional options for the rule. These are the Suricata "RuleOptions" settings. * *(dict) --* Additional settings for a stateful rule. This is part of the StatefulRule configuration. * **Keyword** *(string) --* **[REQUIRED]** The keyword for the Suricata compatible rule option. You must include a "sid" (signature ID), and can optionally include other keywords. For information about Suricata compatible keywords, see Rule options in the Suricata documentation. * **Settings** *(list) --* The settings of the Suricata compatible rule option. Rule options have zero or more setting values, and the number of possible and required settings depends on the "Keyword". For more information about the settings for specific options, see Rule options. * *(string) --* * **StatelessRulesAndCustomActions** *(dict) --* Stateless inspection criteria to be used in a stateless rule group. * **StatelessRules** *(list) --* **[REQUIRED]** Defines the set of stateless rules for use in a stateless rule group. * *(dict) --* A single stateless rule. This is used in StatelessRulesAndCustomActions. * **RuleDefinition** *(dict) --* **[REQUIRED]** Defines the stateless 5-tuple packet inspection criteria and the action to take on a packet that matches the criteria. * **MatchAttributes** *(dict) --* **[REQUIRED]** Criteria for Network Firewall to use to inspect an individual packet in stateless rule inspection. Each match attributes set can include one or more items such as IP address, CIDR range, port number, protocol, and TCP flags. * **Sources** *(list) --* The source IP addresses and address ranges to inspect for, in CIDR notation. If not specified, this matches with any source address. * *(dict) --* A single IP address specification. This is used in the MatchAttributes source and destination specifications. * **AddressDefinition** *(string) --* **[REQUIRED]** Specify an IP address or a block of IP addresses in Classless Inter-Domain Routing (CIDR) notation. Network Firewall supports all address ranges for IPv4 and IPv6. Examples: * To configure Network Firewall to inspect for the IP address 192.0.2.44, specify "192.0.2.44/32". * To configure Network Firewall to inspect for IP addresses from 192.0.2.0 to 192.0.2.255, specify "192.0.2.0/24". * To configure Network Firewall to inspect for the IP address 1111:0000:0000:0000:0000:0000:0000:0111, specify "1111:0000:0000:0000:0000:0000:00 00:0111/128". * To configure Network Firewall to inspect for IP addresses from 1111:0000:0000:0000:0000:0000:0000:0000 to 1111:0000:0000:0000:ffff:ffff:ffff:ffff, specify "1111:0000:0000:0000:0000:0000:00 00:0000/64". For more information about CIDR notation, see the Wikipedia entry Classless Inter- Domain Routing. * **Destinations** *(list) --* The destination IP addresses and address ranges to inspect for, in CIDR notation. If not specified, this matches with any destination address. * *(dict) --* A single IP address specification. This is used in the MatchAttributes source and destination specifications. * **AddressDefinition** *(string) --* **[REQUIRED]** Specify an IP address or a block of IP addresses in Classless Inter-Domain Routing (CIDR) notation. Network Firewall supports all address ranges for IPv4 and IPv6. Examples: * To configure Network Firewall to inspect for the IP address 192.0.2.44, specify "192.0.2.44/32". * To configure Network Firewall to inspect for IP addresses from 192.0.2.0 to 192.0.2.255, specify "192.0.2.0/24". * To configure Network Firewall to inspect for the IP address 1111:0000:0000:0000:0000:0000:0000:0111, specify "1111:0000:0000:0000:0000:0000:00 00:0111/128". * To configure Network Firewall to inspect for IP addresses from 1111:0000:0000:0000:0000:0000:0000:0000 to 1111:0000:0000:0000:ffff:ffff:ffff:ffff, specify "1111:0000:0000:0000:0000:0000:00 00:0000/64". For more information about CIDR notation, see the Wikipedia entry Classless Inter- Domain Routing. * **SourcePorts** *(list) --* The source port to inspect for. You can specify an individual port, for example "1994" and you can specify a port range, for example "1990:1994". To match with any port, specify "ANY". If not specified, this matches with any source port. This setting is only used for protocols 6 (TCP) and 17 (UDP). * *(dict) --* A single port range specification. This is used for source and destination port ranges in the stateless rule MatchAttributes, "SourcePorts", and "DestinationPorts" settings. * **FromPort** *(integer) --* **[REQUIRED]** The lower limit of the port range. This must be less than or equal to the "ToPort" specification. * **ToPort** *(integer) --* **[REQUIRED]** The upper limit of the port range. This must be greater than or equal to the "FromPort" specification. * **DestinationPorts** *(list) --* The destination port to inspect for. You can specify an individual port, for example "1994" and you can specify a port range, for example "1990:1994". To match with any port, specify "ANY". This setting is only used for protocols 6 (TCP) and 17 (UDP). * *(dict) --* A single port range specification. This is used for source and destination port ranges in the stateless rule MatchAttributes, "SourcePorts", and "DestinationPorts" settings. * **FromPort** *(integer) --* **[REQUIRED]** The lower limit of the port range. This must be less than or equal to the "ToPort" specification. * **ToPort** *(integer) --* **[REQUIRED]** The upper limit of the port range. This must be greater than or equal to the "FromPort" specification. * **Protocols** *(list) --* The protocols to inspect for, specified using the assigned internet protocol number (IANA) for each protocol. If not specified, this matches with any protocol. * *(integer) --* * **TCPFlags** *(list) --* The TCP flags and masks to inspect for. If not specified, this matches with any settings. This setting is only used for protocol 6 (TCP). * *(dict) --* TCP flags and masks to inspect packets for, used in stateless rules MatchAttributes settings. * **Flags** *(list) --* **[REQUIRED]** Used in conjunction with the "Masks" setting to define the flags that must be set and flags that must not be set in order for the packet to match. This setting can only specify values that are also specified in the "Masks" setting. For the flags that are specified in the masks setting, the following must be true for the packet to match: * The ones that are set in this flags setting must be set in the packet. * The ones that are not set in this flags setting must also not be set in the packet. * *(string) --* * **Masks** *(list) --* The set of flags to consider in the inspection. To inspect all flags in the valid values list, leave this with no setting. * *(string) --* * **Actions** *(list) --* **[REQUIRED]** The actions to take on a packet that matches one of the stateless rule definition's match attributes. You must specify a standard action and you can add custom actions. Note: Network Firewall only forwards a packet for stateful rule inspection if you specify "aws:forward_to_sfe" for a rule that the packet matches, or if the packet doesn't match any stateless rule and you specify "aws:forward_to_sfe" for the "StatelessDefaultActions" setting for the FirewallPolicy. For every rule, you must specify exactly one of the following standard actions. * **aws:pass** - Discontinues all inspection of the packet and permits it to go to its intended destination. * **aws:drop** - Discontinues all inspection of the packet and blocks it from going to its intended destination. * **aws:forward_to_sfe** - Discontinues stateless inspection of the packet and forwards it to the stateful rule engine for inspection. Additionally, you can specify a custom action. To do this, you define a custom action by name and type, then provide the name you've assigned to the action in this "Actions" setting. For information about the options, see CustomAction. To provide more than one action in this setting, separate the settings with a comma. For example, if you have a custom "PublishMetrics" action that you've named "MyMetricsAction", then you could specify the standard action "aws:pass" and the custom action with "[“aws:pass”, “MyMetricsAction”]". * *(string) --* * **Priority** *(integer) --* **[REQUIRED]** Indicates the order in which to run this rule relative to all of the rules that are defined for a stateless rule group. Network Firewall evaluates the rules in a rule group starting with the lowest priority setting. You must ensure that the priority settings are unique for the rule group. Each stateless rule group uses exactly one "StatelessRulesAndCustomActions" object, and each "StatelessRulesAndCustomActions" contains exactly one "StatelessRules" object. To ensure unique priority settings for your rule groups, set unique priorities for the stateless rules that you define inside any single "StatelessRules" object. You can change the priority settings of your rules at any time. To make it easier to insert rules later, number them so there's a wide range in between, for example use 100, 200, and so on. * **CustomActions** *(list) --* Defines an array of individual custom action definitions that are available for use by the stateless rules in this "StatelessRulesAndCustomActions" specification. You name each custom action that you define, and then you can use it by name in your StatelessRule RuleDefinition "Actions" specification. * *(dict) --* An optional, non-standard action to use for stateless packet handling. You can define this in addition to the standard action that you must specify. You define and name the custom actions that you want to be able to use, and then you reference them by name in your actions settings. You can use custom actions in the following places: * In a rule group's StatelessRulesAndCustomActions specification. The custom actions are available for use by name inside the "StatelessRulesAndCustomActions" where you define them. You can use them for your stateless rule actions to specify what to do with a packet that matches the rule's match attributes. * In a FirewallPolicy specification, in "StatelessCustomActions". The custom actions are available for use inside the policy where you define them. You can use them for the policy's default stateless actions settings to specify what to do with packets that don't match any of the policy's stateless rules. * **ActionName** *(string) --* **[REQUIRED]** The descriptive name of the custom action. You can't change the name of a custom action after you create it. * **ActionDefinition** *(dict) --* **[REQUIRED]** The custom action associated with the action name. * **PublishMetricAction** *(dict) --* Stateless inspection criteria that publishes the specified metrics to Amazon CloudWatch for the matching packet. This setting defines a CloudWatch dimension value to be published. You can pair this custom action with any of the standard stateless rule actions. For example, you could pair this in a rule action with the standard action that forwards the packet for stateful inspection. Then, when a packet matches the rule, Network Firewall publishes metrics for the packet and forwards it. * **Dimensions** *(list) --* **[REQUIRED]** * *(dict) --* The value to use in an Amazon CloudWatch custom metric dimension. This is used in the "PublishMetrics" CustomAction. A CloudWatch custom metric dimension is a name/value pair that's part of the identity of a metric. Network Firewall sets the dimension name to "CustomAction" and you provide the dimension value. For more information about CloudWatch custom metric dimensions, see Publishing Custom Metrics in the Amazon CloudWatch User Guide. * **Value** *(string) --* **[REQUIRED]** The value to use in the custom metric dimension. * **StatefulRuleOptions** *(dict) --* Additional options governing how Network Firewall handles stateful rules. The policies where you use your stateful rule group must have stateful rule options settings that are compatible with these settings. Some limitations apply; for more information, see Strict evaluation order in the *Network Firewall Developer Guide*. * **RuleOrder** *(string) --* Indicates how to manage the order of the rule evaluation for the rule group. "DEFAULT_ACTION_ORDER" is the default behavior. Stateful rules are provided to the rule engine as Suricata compatible strings, and Suricata evaluates them based on certain settings. For more information, see Evaluation order for stateful rules in the *Network Firewall Developer Guide*. * **Rules** (*string*) -- A string containing stateful rule group rules specifications in Suricata flat format, with one rule per line. Use this to import your existing Suricata compatible rule groups. Note: You must provide either this rules setting or a populated "RuleGroup" setting, but not both. You can provide your rule group specification in Suricata flat format through this setting when you create or update your rule group. The call response returns a RuleGroup object that Network Firewall has populated from your string. * **Type** (*string*) -- **[REQUIRED]** Indicates whether the rule group is stateless or stateful. If the rule group is stateless, it contains stateless rules. If it is stateful, it contains stateful rules. * **Description** (*string*) -- A description of the rule group. * **Capacity** (*integer*) -- **[REQUIRED]** The maximum operating resources that this rule group can use. Rule group capacity is fixed at creation. When you update a rule group, you are limited to this capacity. When you reference a rule group from a firewall policy, Network Firewall reserves this capacity for the rule group. You can retrieve the capacity that would be required for a rule group before you create the rule group by calling CreateRuleGroup with "DryRun" set to "TRUE". Note: You can't change or exceed this capacity when you update the rule group, so leave room for your rule group to grow. **Capacity for a stateless rule group** For a stateless rule group, the capacity required is the sum of the capacity requirements of the individual rules that you expect to have in the rule group. To calculate the capacity requirement of a single rule, multiply the capacity requirement values of each of the rule's match settings: * A match setting with no criteria specified has a value of 1. * A match setting with "Any" specified has a value of 1. * All other match settings have a value equal to the number of elements provided in the setting. For example, a protocol setting ["UDP"] and a source setting ["10.0.0.0/24"] each have a value of 1. A protocol setting ["UDP","TCP"] has a value of 2. A source setting ["10.0.0.0/24","10.0.0.1/24","10.0.0.2/24"] has a value of 3. A rule with no criteria specified in any of its match settings has a capacity requirement of 1. A rule with protocol setting ["UDP","TCP"], source setting ["10.0.0.0/24","10.0.0.1/24","10.0.0.2/24"], and a single specification or no specification for each of the other match settings has a capacity requirement of 6. **Capacity for a stateful rule group** For a stateful rule group, the minimum capacity required is the number of individual rules that you expect to have in the rule group. * **Tags** (*list*) -- The key:value pairs to associate with the resource. * *(dict) --* A key:value pair associated with an Amazon Web Services resource. The key:value pair can be anything you define. Typically, the tag key represents a category (such as "environment") and the tag value represents a specific value within that category (such as "test," "development," or "production"). You can add up to 50 tags to each Amazon Web Services resource. * **Key** *(string) --* **[REQUIRED]** The part of the key:value pair that defines a tag. You can use a tag key to describe a category of information, such as "customer." Tag keys are case-sensitive. * **Value** *(string) --* **[REQUIRED]** The part of the key:value pair that defines a tag. You can use a tag value to describe a specific value within a category, such as "companyA" or "companyB." Tag values are case-sensitive. * **DryRun** (*boolean*) -- Indicates whether you want Network Firewall to just check the validity of the request, rather than run the request. If set to "TRUE", Network Firewall checks whether the request can run successfully, but doesn't actually make the requested changes. The call returns the value that the request would return if you ran it with dry run set to "FALSE", but doesn't make additions or changes to your resources. This option allows you to make sure that you have the required permissions to run the request and that your request parameters are valid. If set to "FALSE", Network Firewall makes the requested changes to your resources. * **EncryptionConfiguration** (*dict*) -- A complex type that contains settings for encryption of your rule group resources. * **KeyId** *(string) --* The ID of the Amazon Web Services Key Management Service (KMS) customer managed key. You can use any of the key identifiers that KMS supports, unless you're using a key that's managed by another account. If you're using a key managed by another account, then specify the key ARN. For more information, see Key ID in the *Amazon Web Services KMS Developer Guide*. * **Type** *(string) --* **[REQUIRED]** The type of Amazon Web Services KMS key to use for encryption of your Network Firewall resources. * **SourceMetadata** (*dict*) -- A complex type that contains metadata about the rule group that your own rule group is copied from. You can use the metadata to keep track of updates made to the originating rule group. * **SourceArn** *(string) --* The Amazon Resource Name (ARN) of the rule group that your own rule group is copied from. * **SourceUpdateToken** *(string) --* The update token of the Amazon Web Services managed rule group that your own rule group is copied from. To determine the update token for the managed rule group, call DescribeRuleGroup. * **AnalyzeRuleGroup** (*boolean*) -- Indicates whether you want Network Firewall to analyze the stateless rules in the rule group for rule behavior such as asymmetric routing. If set to "TRUE", Network Firewall runs the analysis and then creates the rule group for you. To run the stateless rule group analyzer without creating the rule group, set "DryRun" to "TRUE". * **SummaryConfiguration** (*dict*) -- An object that contains a "RuleOptions" array of strings. You use "RuleOptions" to determine which of the following RuleSummary values are returned in response to "DescribeRuleGroupSummary". * "Metadata" - returns * "Msg" * "SID" * **RuleOptions** *(list) --* Specifies the selected rule options returned by DescribeRuleGroupSummary. * *(string) --* Return type: dict Returns: **Response Syntax** { 'UpdateToken': 'string', 'RuleGroupResponse': { 'RuleGroupArn': 'string', 'RuleGroupName': 'string', 'RuleGroupId': 'string', 'Description': 'string', 'Type': 'STATELESS'|'STATEFUL', 'Capacity': 123, 'RuleGroupStatus': 'ACTIVE'|'DELETING'|'ERROR', 'Tags': [ { 'Key': 'string', 'Value': 'string' }, ], 'ConsumedCapacity': 123, 'NumberOfAssociations': 123, 'EncryptionConfiguration': { 'KeyId': 'string', 'Type': 'CUSTOMER_KMS'|'AWS_OWNED_KMS_KEY' }, 'SourceMetadata': { 'SourceArn': 'string', 'SourceUpdateToken': 'string' }, 'SnsTopic': 'string', 'LastModifiedTime': datetime(2015, 1, 1), 'AnalysisResults': [ { 'IdentifiedRuleIds': [ 'string', ], 'IdentifiedType': 'STATELESS_RULE_FORWARDING_ASYMMETRICALLY'|'STATELESS_RULE_CONTAINS_TCP_FLAGS', 'AnalysisDetail': 'string' }, ], 'SummaryConfiguration': { 'RuleOptions': [ 'SID'|'MSG'|'METADATA', ] } } } **Response Structure** * *(dict) --* * **UpdateToken** *(string) --* A token used for optimistic locking. Network Firewall returns a token to your requests that access the rule group. The token marks the state of the rule group resource at the time of the request. To make changes to the rule group, you provide the token in your request. Network Firewall uses the token to ensure that the rule group hasn't changed since you last retrieved it. If it has changed, the operation fails with an "InvalidTokenException". If this happens, retrieve the rule group again to get a current copy of it with a current token. Reapply your changes as needed, then try the operation again using the new token. * **RuleGroupResponse** *(dict) --* The high-level properties of a rule group. This, along with the RuleGroup, define the rule group. You can retrieve all objects for a rule group by calling DescribeRuleGroup. * **RuleGroupArn** *(string) --* The Amazon Resource Name (ARN) of the rule group. Note: If this response is for a create request that had "DryRun" set to "TRUE", then this ARN is a placeholder that isn't attached to a valid resource. * **RuleGroupName** *(string) --* The descriptive name of the rule group. You can't change the name of a rule group after you create it. * **RuleGroupId** *(string) --* The unique identifier for the rule group. * **Description** *(string) --* A description of the rule group. * **Type** *(string) --* Indicates whether the rule group is stateless or stateful. If the rule group is stateless, it contains stateless rules. If it is stateful, it contains stateful rules. * **Capacity** *(integer) --* The maximum operating resources that this rule group can use. Rule group capacity is fixed at creation. When you update a rule group, you are limited to this capacity. When you reference a rule group from a firewall policy, Network Firewall reserves this capacity for the rule group. You can retrieve the capacity that would be required for a rule group before you create the rule group by calling CreateRuleGroup with "DryRun" set to "TRUE". * **RuleGroupStatus** *(string) --* Detailed information about the current status of a rule group. * **Tags** *(list) --* The key:value pairs to associate with the resource. * *(dict) --* A key:value pair associated with an Amazon Web Services resource. The key:value pair can be anything you define. Typically, the tag key represents a category (such as "environment") and the tag value represents a specific value within that category (such as "test," "development," or "production"). You can add up to 50 tags to each Amazon Web Services resource. * **Key** *(string) --* The part of the key:value pair that defines a tag. You can use a tag key to describe a category of information, such as "customer." Tag keys are case- sensitive. * **Value** *(string) --* The part of the key:value pair that defines a tag. You can use a tag value to describe a specific value within a category, such as "companyA" or "companyB." Tag values are case-sensitive. * **ConsumedCapacity** *(integer) --* The number of capacity units currently consumed by the rule group rules. * **NumberOfAssociations** *(integer) --* The number of firewall policies that use this rule group. * **EncryptionConfiguration** *(dict) --* A complex type that contains the Amazon Web Services KMS encryption configuration settings for your rule group. * **KeyId** *(string) --* The ID of the Amazon Web Services Key Management Service (KMS) customer managed key. You can use any of the key identifiers that KMS supports, unless you're using a key that's managed by another account. If you're using a key managed by another account, then specify the key ARN. For more information, see Key ID in the *Amazon Web Services KMS Developer Guide*. * **Type** *(string) --* The type of Amazon Web Services KMS key to use for encryption of your Network Firewall resources. * **SourceMetadata** *(dict) --* A complex type that contains metadata about the rule group that your own rule group is copied from. You can use the metadata to track the version updates made to the originating rule group. * **SourceArn** *(string) --* The Amazon Resource Name (ARN) of the rule group that your own rule group is copied from. * **SourceUpdateToken** *(string) --* The update token of the Amazon Web Services managed rule group that your own rule group is copied from. To determine the update token for the managed rule group, call DescribeRuleGroup. * **SnsTopic** *(string) --* The Amazon Resource Name (ARN) of the Amazon Simple Notification Service SNS topic that's used to record changes to the managed rule group. You can subscribe to the SNS topic to receive notifications when the managed rule group is modified, such as for new versions and for version expiration. For more information, see the Amazon Simple Notification Service Developer Guide.. * **LastModifiedTime** *(datetime) --* The last time that the rule group was changed. * **AnalysisResults** *(list) --* The list of analysis results for "AnalyzeRuleGroup". If you set "AnalyzeRuleGroup" to "TRUE" in CreateRuleGroup, UpdateRuleGroup, or DescribeRuleGroup, Network Firewall analyzes the rule group and identifies the rules that might adversely effect your firewall's functionality. For example, if Network Firewall detects a rule that's routing traffic asymmetrically, which impacts the service's ability to properly process traffic, the service includes the rule in the list of analysis results. * *(dict) --* The analysis result for Network Firewall's stateless rule group analyzer. Every time you call CreateRuleGroup, UpdateRuleGroup, or DescribeRuleGroup on a stateless rule group, Network Firewall analyzes the stateless rule groups in your account and identifies the rules that might adversely effect your firewall's functionality. For example, if Network Firewall detects a rule that's routing traffic asymmetrically, which impacts the service's ability to properly process traffic, the service includes the rule in a list of analysis results. The "AnalysisResult" data type is not related to traffic analysis reports you generate using StartAnalysisReport. For information on traffic analysis report results, see AnalysisTypeReportResult. * **IdentifiedRuleIds** *(list) --* The priority number of the stateless rules identified in the analysis. * *(string) --* * **IdentifiedType** *(string) --* The types of rule configurations that Network Firewall analyzes your rule groups for. Network Firewall analyzes stateless rule groups for the following types of rule configurations: * "STATELESS_RULE_FORWARDING_ASYMMETRICALLY" Cause: One or more stateless rules with the action "pass" or "forward" are forwarding traffic asymmetrically. Specifically, the rule's set of source IP addresses or their associated port numbers, don't match the set of destination IP addresses or their associated port numbers. To mitigate: Make sure that there's an existing return path. For example, if the rule allows traffic from source 10.1.0.0/24 to destination 20.1.0.0/24, you should allow return traffic from source 20.1.0.0/24 to destination 10.1.0.0/24. * "STATELESS_RULE_CONTAINS_TCP_FLAGS" Cause: At least one stateless rule with the action "pass" or "forward" contains TCP flags that are inconsistent in the forward and return directions. To mitigate: Prevent asymmetric routing issues caused by TCP flags by following these actions: * Remove unnecessary TCP flag inspections from the rules. * If you need to inspect TCP flags, check that the rules correctly account for changes in TCP flags throughout the TCP connection cycle, for example "SYN" and "ACK" flags used in a 3-way TCP handshake. * **AnalysisDetail** *(string) --* Provides analysis details for the identified rule. * **SummaryConfiguration** *(dict) --* A complex type containing the currently selected rule option fields that will be displayed for rule summarization returned by DescribeRuleGroupSummary. * The "RuleOptions" specified in SummaryConfiguration * Rule metadata organization preferences * **RuleOptions** *(list) --* Specifies the selected rule options returned by DescribeRuleGroupSummary. * *(string) --* **Exceptions** * "NetworkFirewall.Client.exceptions.LimitExceededException" * "NetworkFirewall.Client.exceptions.InvalidRequestException" * "NetworkFirewall.Client.exceptions.ThrottlingException" * "NetworkFirewall.Client.exceptions.InternalServerError" * "NetworkFirewall.Client.exceptions.InsufficientCapacityException" NetworkFirewall / Client / delete_resource_policy delete_resource_policy ********************** NetworkFirewall.Client.delete_resource_policy(**kwargs) Deletes a resource policy that you created in a PutResourcePolicy request. See also: AWS API Documentation **Request Syntax** response = client.delete_resource_policy( ResourceArn='string' ) Parameters: **ResourceArn** (*string*) -- **[REQUIRED]** The Amazon Resource Name (ARN) of the rule group or firewall policy whose resource policy you want to delete. Return type: dict Returns: **Response Syntax** {} **Response Structure** * *(dict) --* **Exceptions** * "NetworkFirewall.Client.exceptions.InvalidRequestException" * "NetworkFirewall.Client.exceptions.InternalServerError" * "NetworkFirewall.Client.exceptions.ResourceNotFoundException" * "NetworkFirewall.Client.exceptions.ThrottlingException" * "NetworkFirewall.Client.exceptions.InvalidResourcePolicyExceptio n" NetworkFirewall / Client / describe_tls_inspection_configuration describe_tls_inspection_configuration ************************************* NetworkFirewall.Client.describe_tls_inspection_configuration(**kwargs) Returns the data objects for the specified TLS inspection configuration. See also: AWS API Documentation **Request Syntax** response = client.describe_tls_inspection_configuration( TLSInspectionConfigurationArn='string', TLSInspectionConfigurationName='string' ) Parameters: * **TLSInspectionConfigurationArn** (*string*) -- The Amazon Resource Name (ARN) of the TLS inspection configuration. You must specify the ARN or the name, and you can specify both. * **TLSInspectionConfigurationName** (*string*) -- The descriptive name of the TLS inspection configuration. You can't change the name of a TLS inspection configuration after you create it. You must specify the ARN or the name, and you can specify both. Return type: dict Returns: **Response Syntax** { 'UpdateToken': 'string', 'TLSInspectionConfiguration': { 'ServerCertificateConfigurations': [ { 'ServerCertificates': [ { 'ResourceArn': 'string' }, ], 'Scopes': [ { 'Sources': [ { 'AddressDefinition': 'string' }, ], 'Destinations': [ { 'AddressDefinition': 'string' }, ], 'SourcePorts': [ { 'FromPort': 123, 'ToPort': 123 }, ], 'DestinationPorts': [ { 'FromPort': 123, 'ToPort': 123 }, ], 'Protocols': [ 123, ] }, ], 'CertificateAuthorityArn': 'string', 'CheckCertificateRevocationStatus': { 'RevokedStatusAction': 'PASS'|'DROP'|'REJECT', 'UnknownStatusAction': 'PASS'|'DROP'|'REJECT' } }, ] }, 'TLSInspectionConfigurationResponse': { 'TLSInspectionConfigurationArn': 'string', 'TLSInspectionConfigurationName': 'string', 'TLSInspectionConfigurationId': 'string', 'TLSInspectionConfigurationStatus': 'ACTIVE'|'DELETING'|'ERROR', 'Description': 'string', 'Tags': [ { 'Key': 'string', 'Value': 'string' }, ], 'LastModifiedTime': datetime(2015, 1, 1), 'NumberOfAssociations': 123, 'EncryptionConfiguration': { 'KeyId': 'string', 'Type': 'CUSTOMER_KMS'|'AWS_OWNED_KMS_KEY' }, 'Certificates': [ { 'CertificateArn': 'string', 'CertificateSerial': 'string', 'Status': 'string', 'StatusMessage': 'string' }, ], 'CertificateAuthority': { 'CertificateArn': 'string', 'CertificateSerial': 'string', 'Status': 'string', 'StatusMessage': 'string' } } } **Response Structure** * *(dict) --* * **UpdateToken** *(string) --* A token used for optimistic locking. Network Firewall returns a token to your requests that access the TLS inspection configuration. The token marks the state of the TLS inspection configuration resource at the time of the request. To make changes to the TLS inspection configuration, you provide the token in your request. Network Firewall uses the token to ensure that the TLS inspection configuration hasn't changed since you last retrieved it. If it has changed, the operation fails with an "InvalidTokenException". If this happens, retrieve the TLS inspection configuration again to get a current copy of it with a current token. Reapply your changes as needed, then try the operation again using the new token. * **TLSInspectionConfiguration** *(dict) --* The object that defines a TLS inspection configuration. This, along with TLSInspectionConfigurationResponse, define the TLS inspection configuration. You can retrieve all objects for a TLS inspection configuration by calling DescribeTLSInspectionConfiguration. Network Firewall uses a TLS inspection configuration to decrypt traffic. Network Firewall re-encrypts the traffic before sending it to its destination. To use a TLS inspection configuration, you add it to a new Network Firewall firewall policy, then you apply the firewall policy to a firewall. Network Firewall acts as a proxy service to decrypt and inspect the traffic traveling through your firewalls. You can reference a TLS inspection configuration from more than one firewall policy, and you can use a firewall policy in more than one firewall. For more information about using TLS inspection configurations, see Inspecting SSL/TLS traffic with TLS inspection configurations in the *Network Firewall Developer Guide*. * **ServerCertificateConfigurations** *(list) --* Lists the server certificate configurations that are associated with the TLS configuration. * *(dict) --* Configures the Certificate Manager certificates and scope that Network Firewall uses to decrypt and re- encrypt traffic using a TLSInspectionConfiguration. You can configure "ServerCertificates" for inbound SSL/TLS inspection, a "CertificateAuthorityArn" for outbound SSL/TLS inspection, or both. For information about working with certificates for TLS inspection, see Using SSL/TLS server certficiates with TLS inspection configurations in the *Network Firewall Developer Guide*. Note: If a server certificate that's associated with your TLSInspectionConfiguration is revoked, deleted, or expired it can result in client-side TLS errors. * **ServerCertificates** *(list) --* The list of server certificates to use for inbound SSL/TLS inspection. * *(dict) --* Any Certificate Manager (ACM) Secure Sockets Layer/Transport Layer Security (SSL/TLS) server certificate that's associated with a ServerCertificateConfiguration. Used in a TLSInspectionConfiguration for inspection of inbound traffic to your firewall. You must request or import a SSL/TLS certificate into ACM for each domain Network Firewall needs to decrypt and inspect. Network Firewall uses the SSL/TLS certificates to decrypt specified inbound SSL/TLS traffic going to your firewall. For information about working with certificates in Certificate Manager, see Request a public certificate or Importing certificates in the *Certificate Manager User Guide*. * **ResourceArn** *(string) --* The Amazon Resource Name (ARN) of the Certificate Manager SSL/TLS server certificate that's used for inbound SSL/TLS inspection. * **Scopes** *(list) --* A list of scopes. * *(dict) --* Settings that define the Secure Sockets Layer/Transport Layer Security (SSL/TLS) traffic that Network Firewall should decrypt for inspection by the stateful rule engine. * **Sources** *(list) --* The source IP addresses and address ranges to decrypt for inspection, in CIDR notation. If not specified, this matches with any source address. * *(dict) --* A single IP address specification. This is used in the MatchAttributes source and destination specifications. * **AddressDefinition** *(string) --* Specify an IP address or a block of IP addresses in Classless Inter-Domain Routing (CIDR) notation. Network Firewall supports all address ranges for IPv4 and IPv6. Examples: * To configure Network Firewall to inspect for the IP address 192.0.2.44, specify "192.0.2.44/32". * To configure Network Firewall to inspect for IP addresses from 192.0.2.0 to 192.0.2.255, specify "192.0.2.0/24". * To configure Network Firewall to inspect for the IP address 1111:0000:0000:0000:0000:0000:0000:0111, specify "1111:0000:0000:0000:0000:0000:0000 :0111/128". * To configure Network Firewall to inspect for IP addresses from 1111:0000:0000:0000:0000:0000:0000:0000 to 1111:0000:0000:0000:ffff:ffff:ffff:ffff, specify "1111:0000:0000:0000:0000:0000:0000 :0000/64". For more information about CIDR notation, see the Wikipedia entry Classless Inter-Domain Routing. * **Destinations** *(list) --* The destination IP addresses and address ranges to decrypt for inspection, in CIDR notation. If not specified, this matches with any destination address. * *(dict) --* A single IP address specification. This is used in the MatchAttributes source and destination specifications. * **AddressDefinition** *(string) --* Specify an IP address or a block of IP addresses in Classless Inter-Domain Routing (CIDR) notation. Network Firewall supports all address ranges for IPv4 and IPv6. Examples: * To configure Network Firewall to inspect for the IP address 192.0.2.44, specify "192.0.2.44/32". * To configure Network Firewall to inspect for IP addresses from 192.0.2.0 to 192.0.2.255, specify "192.0.2.0/24". * To configure Network Firewall to inspect for the IP address 1111:0000:0000:0000:0000:0000:0000:0111, specify "1111:0000:0000:0000:0000:0000:0000 :0111/128". * To configure Network Firewall to inspect for IP addresses from 1111:0000:0000:0000:0000:0000:0000:0000 to 1111:0000:0000:0000:ffff:ffff:ffff:ffff, specify "1111:0000:0000:0000:0000:0000:0000 :0000/64". For more information about CIDR notation, see the Wikipedia entry Classless Inter-Domain Routing. * **SourcePorts** *(list) --* The source ports to decrypt for inspection, in Transmission Control Protocol (TCP) format. If not specified, this matches with any source port. You can specify individual ports, for example "1994", and you can specify port ranges, such as "1990:1994". * *(dict) --* A single port range specification. This is used for source and destination port ranges in the stateless rule MatchAttributes, "SourcePorts", and "DestinationPorts" settings. * **FromPort** *(integer) --* The lower limit of the port range. This must be less than or equal to the "ToPort" specification. * **ToPort** *(integer) --* The upper limit of the port range. This must be greater than or equal to the "FromPort" specification. * **DestinationPorts** *(list) --* The destination ports to decrypt for inspection, in Transmission Control Protocol (TCP) format. If not specified, this matches with any destination port. You can specify individual ports, for example "1994", and you can specify port ranges, such as "1990:1994". * *(dict) --* A single port range specification. This is used for source and destination port ranges in the stateless rule MatchAttributes, "SourcePorts", and "DestinationPorts" settings. * **FromPort** *(integer) --* The lower limit of the port range. This must be less than or equal to the "ToPort" specification. * **ToPort** *(integer) --* The upper limit of the port range. This must be greater than or equal to the "FromPort" specification. * **Protocols** *(list) --* The protocols to inspect for, specified using the assigned internet protocol number (IANA) for each protocol. If not specified, this matches with any protocol. Network Firewall currently supports only TCP. * *(integer) --* * **CertificateAuthorityArn** *(string) --* The Amazon Resource Name (ARN) of the imported certificate authority (CA) certificate within Certificate Manager (ACM) to use for outbound SSL/TLS inspection. The following limitations apply: * You can use CA certificates that you imported into ACM, but you can't generate CA certificates with ACM. * You can't use certificates issued by Private Certificate Authority. For more information about configuring certificates for outbound inspection, see Using SSL/TLS certificates with TLS inspection configurations in the *Network Firewall Developer Guide*. For information about working with certificates in ACM, see Importing certificates in the *Certificate Manager User Guide*. * **CheckCertificateRevocationStatus** *(dict) --* When enabled, Network Firewall checks if the server certificate presented by the server in the SSL/TLS connection has a revoked or unkown status. If the certificate has an unknown or revoked status, you must specify the actions that Network Firewall takes on outbound traffic. To check the certificate revocation status, you must also specify a "CertificateAuthorityArn" in ServerCertificateConfiguration. * **RevokedStatusAction** *(string) --* Configures how Network Firewall processes traffic when it determines that the certificate presented by the server in the SSL/TLS connection has a revoked status. * **PASS** - Allow the connection to continue, and pass subsequent packets to the stateful engine for inspection. * **DROP** - Network Firewall closes the connection and drops subsequent packets for that connection. * **REJECT** - Network Firewall sends a TCP reject packet back to your client. The service closes the connection and drops subsequent packets for that connection. "REJECT" is available only for TCP traffic. * **UnknownStatusAction** *(string) --* Configures how Network Firewall processes traffic when it determines that the certificate presented by the server in the SSL/TLS connection has an unknown status, or a status that cannot be determined for any other reason, including when the service is unable to connect to the OCSP and CRL endpoints for the certificate. * **PASS** - Allow the connection to continue, and pass subsequent packets to the stateful engine for inspection. * **DROP** - Network Firewall closes the connection and drops subsequent packets for that connection. * **REJECT** - Network Firewall sends a TCP reject packet back to your client. The service closes the connection and drops subsequent packets for that connection. "REJECT" is available only for TCP traffic. * **TLSInspectionConfigurationResponse** *(dict) --* The high-level properties of a TLS inspection configuration. This, along with the TLSInspectionConfiguration, define the TLS inspection configuration. You can retrieve all objects for a TLS inspection configuration by calling DescribeTLSInspectionConfiguration. * **TLSInspectionConfigurationArn** *(string) --* The Amazon Resource Name (ARN) of the TLS inspection configuration. * **TLSInspectionConfigurationName** *(string) --* The descriptive name of the TLS inspection configuration. You can't change the name of a TLS inspection configuration after you create it. * **TLSInspectionConfigurationId** *(string) --* A unique identifier for the TLS inspection configuration. This ID is returned in the responses to create and list commands. You provide it to operations such as update and delete. * **TLSInspectionConfigurationStatus** *(string) --* Detailed information about the current status of a TLSInspectionConfiguration. You can retrieve this for a TLS inspection configuration by calling DescribeTLSInspectionConfiguration and providing the TLS inspection configuration name and ARN. * **Description** *(string) --* A description of the TLS inspection configuration. * **Tags** *(list) --* The key:value pairs to associate with the resource. * *(dict) --* A key:value pair associated with an Amazon Web Services resource. The key:value pair can be anything you define. Typically, the tag key represents a category (such as "environment") and the tag value represents a specific value within that category (such as "test," "development," or "production"). You can add up to 50 tags to each Amazon Web Services resource. * **Key** *(string) --* The part of the key:value pair that defines a tag. You can use a tag key to describe a category of information, such as "customer." Tag keys are case- sensitive. * **Value** *(string) --* The part of the key:value pair that defines a tag. You can use a tag value to describe a specific value within a category, such as "companyA" or "companyB." Tag values are case-sensitive. * **LastModifiedTime** *(datetime) --* The last time that the TLS inspection configuration was changed. * **NumberOfAssociations** *(integer) --* The number of firewall policies that use this TLS inspection configuration. * **EncryptionConfiguration** *(dict) --* A complex type that contains the Amazon Web Services KMS encryption configuration settings for your TLS inspection configuration. * **KeyId** *(string) --* The ID of the Amazon Web Services Key Management Service (KMS) customer managed key. You can use any of the key identifiers that KMS supports, unless you're using a key that's managed by another account. If you're using a key managed by another account, then specify the key ARN. For more information, see Key ID in the *Amazon Web Services KMS Developer Guide*. * **Type** *(string) --* The type of Amazon Web Services KMS key to use for encryption of your Network Firewall resources. * **Certificates** *(list) --* A list of the certificates associated with the TLS inspection configuration. * *(dict) --* Contains metadata about an Certificate Manager certificate. * **CertificateArn** *(string) --* The Amazon Resource Name (ARN) of the certificate. * **CertificateSerial** *(string) --* The serial number of the certificate. * **Status** *(string) --* The status of the certificate. * **StatusMessage** *(string) --* Contains details about the certificate status, including information about certificate errors. * **CertificateAuthority** *(dict) --* Contains metadata about an Certificate Manager certificate. * **CertificateArn** *(string) --* The Amazon Resource Name (ARN) of the certificate. * **CertificateSerial** *(string) --* The serial number of the certificate. * **Status** *(string) --* The status of the certificate. * **StatusMessage** *(string) --* Contains details about the certificate status, including information about certificate errors. **Exceptions** * "NetworkFirewall.Client.exceptions.InvalidRequestException" * "NetworkFirewall.Client.exceptions.InternalServerError" * "NetworkFirewall.Client.exceptions.ResourceNotFoundException" * "NetworkFirewall.Client.exceptions.ThrottlingException" NetworkFirewall / Client / list_firewalls list_firewalls ************** NetworkFirewall.Client.list_firewalls(**kwargs) Retrieves the metadata for the firewalls that you have defined. If you provide VPC identifiers in your request, this returns only the firewalls for those VPCs. Depending on your setting for max results and the number of firewalls, a single call might not return the full list. See also: AWS API Documentation **Request Syntax** response = client.list_firewalls( NextToken='string', VpcIds=[ 'string', ], MaxResults=123 ) Parameters: * **NextToken** (*string*) -- When you request a list of objects with a "MaxResults" setting, if the number of objects that are still available for retrieval exceeds the maximum you requested, Network Firewall returns a "NextToken" value in the response. To retrieve the next batch of objects, use the token returned from the prior request in your next request. * **VpcIds** (*list*) -- The unique identifiers of the VPCs that you want Network Firewall to retrieve the firewalls for. Leave this blank to retrieve all firewalls that you have defined. * *(string) --* * **MaxResults** (*integer*) -- The maximum number of objects that you want Network Firewall to return for this request. If more objects are available, in the response, Network Firewall provides a "NextToken" value that you can use in a subsequent call to get the next batch of objects. Return type: dict Returns: **Response Syntax** { 'NextToken': 'string', 'Firewalls': [ { 'FirewallName': 'string', 'FirewallArn': 'string', 'TransitGatewayAttachmentId': 'string' }, ] } **Response Structure** * *(dict) --* * **NextToken** *(string) --* When you request a list of objects with a "MaxResults" setting, if the number of objects that are still available for retrieval exceeds the maximum you requested, Network Firewall returns a "NextToken" value in the response. To retrieve the next batch of objects, use the token returned from the prior request in your next request. * **Firewalls** *(list) --* The firewall metadata objects for the VPCs that you specified. Depending on your setting for max results and the number of firewalls you have, a single call might not be the full list. * *(dict) --* High-level information about a firewall, returned by operations like create and describe. You can use the information provided in the metadata to retrieve and manage a firewall. * **FirewallName** *(string) --* The descriptive name of the firewall. You can't change the name of a firewall after you create it. * **FirewallArn** *(string) --* The Amazon Resource Name (ARN) of the firewall. * **TransitGatewayAttachmentId** *(string) --* The unique identifier of the transit gateway attachment associated with this firewall. This field is only present for transit gateway-attached firewalls. **Exceptions** * "NetworkFirewall.Client.exceptions.InvalidRequestException" * "NetworkFirewall.Client.exceptions.InternalServerError" * "NetworkFirewall.Client.exceptions.ThrottlingException"