You are viewing the documentation for an older major version of the AWS SDK for JavaScript.
The modular AWS SDK for JavaScript (v3), the latest major version of AWS SDK for JavaScript, is now stable and recommended for general use. For more information, see the Migration Guide and API Reference.

Class: AWS.NetworkFirewall

Inherits:
AWS.Service show all
Identifier:
networkfirewall
API Version:
2020-11-12
Defined in:
(unknown)

Overview

Constructs a service interface object. Each API operation is exposed as a function on service.

Service Description

This is the API Reference for AWS 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 AWS REST APIs, see AWS APIs.

    To access Network Firewall using the REST API endpoint: https://network-firewall.<region>.amazonaws.com

  • Alternatively, you can use one of the AWS SDKs to access an API that's tailored to the programming language or platform that you're using. For more information, see AWS 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 AWS Direct Connect. Network Firewall uses rules that are compatible with Suricata, a free, open source intrusion detection system (IDS) engine. AWS Network Firewall supports Suricata version 5.0.2. For information about Suricata, see the Suricata website.

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 AWS 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:

  1. (Optional) If you don't already have a VPC that you want to protect, create it in Amazon VPC.

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

  3. In Network Firewall, create stateless and stateful rule groups, to define the components of the network traffic filtering behavior that you want your firewall to have.

  4. In Network Firewall, create a firewall policy that uses your rule groups and specifies additional default traffic filtering behavior.

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

  6. In Amazon VPC, use ingress routing enhancements to route traffic through the new firewall endpoints.

Sending a Request Using NetworkFirewall

var networkfirewall = new AWS.NetworkFirewall();
networkfirewall.associateFirewallPolicy(params, function (err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Locking the API Version

In order to ensure that the NetworkFirewall object uses this specific API, you can construct the object by passing the apiVersion option to the constructor:

var networkfirewall = new AWS.NetworkFirewall({apiVersion: '2020-11-12'});

You can also set the API version globally in AWS.config.apiVersions using the networkfirewall service identifier:

AWS.config.apiVersions = {
  networkfirewall: '2020-11-12',
  // other service API versions
};

var networkfirewall = new AWS.NetworkFirewall();

Version:

  • 2020-11-12

Constructor Summary collapse

Property Summary collapse

Properties inherited from AWS.Service

apiVersions

Method Summary collapse

Methods inherited from AWS.Service

makeRequest, makeUnauthenticatedRequest, waitFor, setupRequestListeners, defineService

Constructor Details

new AWS.NetworkFirewall(options = {}) ⇒ Object

Constructs a service object. This object has one method for each API operation.

Examples:

Constructing a NetworkFirewall object

var networkfirewall = new AWS.NetworkFirewall({apiVersion: '2020-11-12'});

Options Hash (options):

  • params (map)

    An optional map of parameters to bind to every request sent by this service object. For more information on bound parameters, see "Working with Services" in the Getting Started Guide.

  • endpoint (String|AWS.Endpoint)

    The endpoint URI to send requests to. The default endpoint is built from the configured region. The endpoint should be a string like 'https://{service}.{region}.amazonaws.com' or an Endpoint object.

  • accessKeyId (String)

    your AWS access key ID.

  • secretAccessKey (String)

    your AWS secret access key.

  • sessionToken (AWS.Credentials)

    the optional AWS session token to sign requests with.

  • credentials (AWS.Credentials)

    the AWS credentials to sign requests with. You can either specify this object, or specify the accessKeyId and secretAccessKey options directly.

  • credentialProvider (AWS.CredentialProviderChain)

    the provider chain used to resolve credentials if no static credentials property is set.

  • region (String)

    the region to send service requests to. See AWS.NetworkFirewall.region for more information.

  • maxRetries (Integer)

    the maximum amount of retries to attempt with a request. See AWS.NetworkFirewall.maxRetries for more information.

  • maxRedirects (Integer)

    the maximum amount of redirects to follow with a request. See AWS.NetworkFirewall.maxRedirects for more information.

  • sslEnabled (Boolean)

    whether to enable SSL for requests.

  • paramValidation (Boolean|map)

    whether input parameters should be validated against the operation description before sending the request. Defaults to true. Pass a map to enable any of the following specific validation features:

    • min [Boolean] — Validates that a value meets the min constraint. This is enabled by default when paramValidation is set to true.
    • max [Boolean] — Validates that a value meets the max constraint.
    • pattern [Boolean] — Validates that a string value matches a regular expression.
    • enum [Boolean] — Validates that a string value matches one of the allowable enum values.
  • computeChecksums (Boolean)

    whether to compute checksums for payload bodies when the service accepts it (currently supported in S3 only)

  • convertResponseTypes (Boolean)

    whether types are converted when parsing response data. Currently only supported for JSON based services. Turning this off may improve performance on large response payloads. Defaults to true.

  • correctClockSkew (Boolean)

    whether to apply a clock skew correction and retry requests that fail because of an skewed client clock. Defaults to false.

  • s3ForcePathStyle (Boolean)

    whether to force path style URLs for S3 objects.

  • s3BucketEndpoint (Boolean)

    whether the provided endpoint addresses an individual bucket (false if it addresses the root API endpoint). Note that setting this configuration option requires an endpoint to be provided explicitly to the service constructor.

  • s3DisableBodySigning (Boolean)

    whether S3 body signing should be disabled when using signature version v4. Body signing can only be disabled when using https. Defaults to true.

  • s3UsEast1RegionalEndpoint ('legacy'|'regional')

    when region is set to 'us-east-1', whether to send s3 request to global endpoints or 'us-east-1' regional endpoints. This config is only applicable to S3 client. Defaults to legacy

  • s3UseArnRegion (Boolean)

    whether to override the request region with the region inferred from requested resource's ARN. Only available for S3 buckets Defaults to true

  • retryDelayOptions (map)

    A set of options to configure the retry delay on retryable errors. Currently supported options are:

    • base [Integer] — The base number of milliseconds to use in the exponential backoff for operation retries. Defaults to 100 ms for all services except DynamoDB, where it defaults to 50ms.
    • customBackoff [function] — A custom function that accepts a retry count and error and returns the amount of time to delay in milliseconds. If the result is a non-zero negative value, no further retry attempts will be made. The base option will be ignored if this option is supplied. The function is only called for retryable errors.
  • httpOptions (map)

    A set of options to pass to the low-level HTTP request. Currently supported options are:

    • proxy [String] — the URL to proxy requests through
    • agent [http.Agent, https.Agent] — the Agent object to perform HTTP requests with. Used for connection pooling. Defaults to the global agent (http.globalAgent) for non-SSL connections. Note that for SSL connections, a special Agent object is used in order to enable peer certificate verification. This feature is only available in the Node.js environment.
    • connectTimeout [Integer] — Sets the socket to timeout after failing to establish a connection with the server after connectTimeout milliseconds. This timeout has no effect once a socket connection has been established.
    • timeout [Integer] — Sets the socket to timeout after timeout milliseconds of inactivity on the socket. Defaults to two minutes (120000).
    • xhrAsync [Boolean] — Whether the SDK will send asynchronous HTTP requests. Used in the browser environment only. Set to false to send requests synchronously. Defaults to true (async on).
    • xhrWithCredentials [Boolean] — Sets the "withCredentials" property of an XMLHttpRequest object. Used in the browser environment only. Defaults to false.
  • apiVersion (String, Date)

    a String in YYYY-MM-DD format (or a date) that represents the latest possible API version that can be used in all services (unless overridden by apiVersions). Specify 'latest' to use the latest possible version.

  • apiVersions (map<String, String|Date>)

    a map of service identifiers (the lowercase service class name) with the API version to use when instantiating a service. Specify 'latest' for each individual that can use the latest available version.

  • logger (#write, #log)

    an object that responds to .write() (like a stream) or .log() (like the console object) in order to log information about requests

  • systemClockOffset (Number)

    an offset value in milliseconds to apply to all signing times. Use this to compensate for clock skew when your system may be out of sync with the service time. Note that this configuration option can only be applied to the global AWS.config object and cannot be overridden in service-specific configuration. Defaults to 0 milliseconds.

  • signatureVersion (String)

    the signature version to sign requests with (overriding the API configuration). Possible values are: 'v2', 'v3', 'v4'.

  • signatureCache (Boolean)

    whether the signature to sign requests with (overriding the API configuration) is cached. Only applies to the signature version 'v4'. Defaults to true.

  • dynamoDbCrc32 (Boolean)

    whether to validate the CRC32 checksum of HTTP response bodies returned by DynamoDB. Default: true.

  • useAccelerateEndpoint (Boolean)

    Whether to use the S3 Transfer Acceleration endpoint with the S3 service. Default: false.

  • clientSideMonitoring (Boolean)

    whether to collect and publish this client's performance metrics of all its API requests.

  • endpointDiscoveryEnabled (Boolean|undefined)

    whether to call operations with endpoints given by service dynamically. Setting this

  • endpointCacheSize (Number)

    the size of the global cache storing endpoints from endpoint discovery operations. Once endpoint cache is created, updating this setting cannot change existing cache size. Defaults to 1000

  • hostPrefixEnabled (Boolean)

    whether to marshal request parameters to the prefix of hostname. Defaults to true.

  • stsRegionalEndpoints ('legacy'|'regional')

    whether to send sts request to global endpoints or regional endpoints. Defaults to 'legacy'.

Property Details

endpointAWS.Endpoint (readwrite)

Returns an Endpoint object representing the endpoint URL for service requests.

Returns:

  • (AWS.Endpoint)

    an Endpoint object representing the endpoint URL for service requests.

Method Details

associateFirewallPolicy(params = {}, callback) ⇒ AWS.Request

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.

Service Reference:

Examples:

Calling the associateFirewallPolicy operation

var params = {
  FirewallPolicyArn: 'STRING_VALUE', /* required */
  FirewallArn: 'STRING_VALUE',
  FirewallName: 'STRING_VALUE',
  UpdateToken: 'STRING_VALUE'
};
networkfirewall.associateFirewallPolicy(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • 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)

      The Amazon Resource Name (ARN) of the firewall policy.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

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

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

associateSubnets(params = {}, callback) ⇒ AWS.Request

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

Service Reference:

Examples:

Calling the associateSubnets operation

var params = {
  SubnetMappings: [ /* required */
    {
      SubnetId: 'STRING_VALUE' /* required */
    },
    /* more items */
  ],
  FirewallArn: 'STRING_VALUE',
  FirewallName: 'STRING_VALUE',
  UpdateToken: 'STRING_VALUE'
};
networkfirewall.associateSubnets(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • 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 — (Array<map>)

      The IDs of the subnets that you want to associate with the firewall.

      • SubnetIdrequired — (String)

        The unique identifier for the subnet.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • 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 — (Array<map>)

        The IDs of the subnets that are associated with the firewall.

        • SubnetIdrequired — (String)

          The unique identifier for 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.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

createFirewall(params = {}, callback) ⇒ AWS.Request

Creates an AWS Network Firewall Firewall and accompanying FirewallStatus for a VPC.

The firewall defines the configuration settings for an AWS 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 AWS 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 AWS resource tagging operations, ListTagsForResource, TagResource, and UntagResource.

To retrieve information about firewalls, use ListFirewalls and DescribeFirewall.

Service Reference:

Examples:

Calling the createFirewall operation

var params = {
  FirewallName: 'STRING_VALUE', /* required */
  FirewallPolicyArn: 'STRING_VALUE', /* required */
  SubnetMappings: [ /* required */
    {
      SubnetId: 'STRING_VALUE' /* required */
    },
    /* more items */
  ],
  VpcId: 'STRING_VALUE', /* required */
  DeleteProtection: true || false,
  Description: 'STRING_VALUE',
  FirewallPolicyChangeProtection: true || false,
  SubnetChangeProtection: true || false,
  Tags: [
    {
      Key: 'STRING_VALUE', /* required */
      Value: 'STRING_VALUE' /* required */
    },
    /* more items */
  ]
};
networkfirewall.createFirewall(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • 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 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 — (Array<map>)

      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.

      • SubnetIdrequired — (String)

        The unique identifier for 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 — (Array<map>)

      The key:value pairs to associate with the resource.

      • Keyrequired — (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.

      • Valuerequired — (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.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • Firewall — (map)

        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.

        • FirewallPolicyArnrequired — (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.

        • VpcIdrequired — (String)

          The unique identifier of the VPC where the firewall is in use.

        • SubnetMappingsrequired — (Array<map>)

          The public subnets that Network Firewall is using for the firewall. Each subnet must belong to a different Availability Zone.

          • SubnetIdrequired — (String)

            The unique identifier for 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.

        • FirewallIdrequired — (String)

          The unique identifier for the firewall.

        • Tags — (Array<map>)

          • Keyrequired — (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.

          • Valuerequired — (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.

      • FirewallStatus — (map)

        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.

        • Statusrequired — (String)

          The readiness of the configured firewall to handle network traffic across all of the Availability Zones where you've configured it. 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.

          Possible values include:
          • "PROVISIONING"
          • "DELETING"
          • "READY"
        • ConfigurationSyncStateSummaryrequired — (String)

          The configuration sync state for the firewall. This summarizes the sync states reported in the Config settings for all of the Availability Zones where you have configured the firewall.

          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 zones where the firewall is in use. 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.

          Possible values include:
          • "PENDING"
          • "IN_SYNC"
        • SyncStates — (map<map>)

          The subnets that you've configured for use by the Network Firewall firewall. This contains one array element per Availability Zone where you've configured a subnet. These objects provide details of the information that is summarized in the ConfigurationSyncStateSummary and Status, broken down by zone and configuration object.

          • Attachment — (map)

            The attachment status of the firewall's association with a single VPC 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. This is part of the FirewallStatus.

            • 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 in the subnet. This value reflects both the instantiation of the endpoint in the VPC subnet and the sync states that are reported in the Config settings. When this value is READY, the endpoint is available and configured properly to handle network traffic. When the endpoint isn't available for traffic, this value will reflect its state, for example CREATING, DELETING, or FAILED.

              Possible values include:
              • "CREATING"
              • "DELETING"
              • "SCALING"
              • "READY"
          • Config — (map<map>)

            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. This is part of the FirewallStatus.

            • SyncStatus — (String)

              Indicates whether this object is in sync with the version indicated in the update token.

              Possible values include:
              • "PENDING"
              • "IN_SYNC"
            • UpdateToken — (String)

              The current version of the object that is either in sync or pending synchronization.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

createFirewallPolicy(params = {}, callback) ⇒ AWS.Request

Creates the firewall policy for the firewall according to the specifications.

An AWS 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.

Service Reference:

Examples:

Calling the createFirewallPolicy operation

var params = {
  FirewallPolicy: { /* required */
    StatelessDefaultActions: [ /* required */
      'STRING_VALUE',
      /* more items */
    ],
    StatelessFragmentDefaultActions: [ /* required */
      'STRING_VALUE',
      /* more items */
    ],
    StatefulDefaultActions: [
      'STRING_VALUE',
      /* more items */
    ],
    StatefulEngineOptions: {
      RuleOrder: DEFAULT_ACTION_ORDER | STRICT_ORDER
    },
    StatefulRuleGroupReferences: [
      {
        ResourceArn: 'STRING_VALUE', /* required */
        Priority: 'NUMBER_VALUE'
      },
      /* more items */
    ],
    StatelessCustomActions: [
      {
        ActionDefinition: { /* required */
          PublishMetricAction: {
            Dimensions: [ /* required */
              {
                Value: 'STRING_VALUE' /* required */
              },
              /* more items */
            ]
          }
        },
        ActionName: 'STRING_VALUE' /* required */
      },
      /* more items */
    ],
    StatelessRuleGroupReferences: [
      {
        Priority: 'NUMBER_VALUE', /* required */
        ResourceArn: 'STRING_VALUE' /* required */
      },
      /* more items */
    ]
  },
  FirewallPolicyName: 'STRING_VALUE', /* required */
  Description: 'STRING_VALUE',
  DryRun: true || false,
  Tags: [
    {
      Key: 'STRING_VALUE', /* required */
      Value: 'STRING_VALUE' /* required */
    },
    /* more items */
  ]
};
networkfirewall.createFirewallPolicy(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • FirewallPolicyName — (String)

      The descriptive name of the firewall policy. You can't change the name of a firewall policy after you create it.

    • FirewallPolicy — (map)

      The rule groups and policy actions to use in the firewall policy.

      • StatelessRuleGroupReferences — (Array<map>)

        References to the stateless rule groups that are used in the policy. These define the matching criteria in stateless rules.

        • ResourceArnrequired — (String)

          The Amazon Resource Name (ARN) of the stateless rule group.

        • Priorityrequired — (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.

      • StatelessDefaultActionsrequired — (Array<String>)

        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.

      • StatelessFragmentDefaultActionsrequired — (Array<String>)

        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.

      • StatelessCustomActions — (Array<map>)

        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.

        • ActionNamerequired — (String)

          The descriptive name of the custom action. You can't change the name of a custom action after you create it.

        • ActionDefinitionrequired — (map)

          The custom action associated with the action name.

          • PublishMetricAction — (map)

            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.

            • Dimensionsrequired — (Array<map>)

              • Valuerequired — (String)

                The value to use in the custom metric dimension.

      • StatefulRuleGroupReferences — (Array<map>)

        References to the stateful rule groups that are used in the policy. These define the inspection criteria in stateful rules.

        • ResourceArnrequired — (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.

      • StatefulDefaultActions — (Array<String>)

        The default actions to take on a packet that doesn't match any stateful rules.

      • StatefulEngineOptions — (map)

        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. By default, Network Firewall leaves the rule evaluation order up to the Suricata rule processing engine. If you set this to STRICT_ORDER, your rules are evaluated in the exact order that you provide them in the policy. With strict ordering, the rule groups are evaluated by order of priority, starting from the lowest number, and the rules in each rule group are processed in the order that they're defined.

          Possible values include:
          • "DEFAULT_ACTION_ORDER"
          • "STRICT_ORDER"
    • Description — (String)

      A description of the firewall policy.

    • Tags — (Array<map>)

      The key:value pairs to associate with the resource.

      • Keyrequired — (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.

      • Valuerequired — (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.

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

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • 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 — (map)

        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.

        • FirewallPolicyNamerequired — (String)

          The descriptive name of the firewall policy. You can't change the name of a firewall policy after you create it.

        • FirewallPolicyArnrequired — (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.
        • FirewallPolicyIdrequired — (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.

          Possible values include:
          • "ACTIVE"
          • "DELETING"
        • Tags — (Array<map>)

          The key:value pairs to associate with the resource.

          • Keyrequired — (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.

          • Valuerequired — (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.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

createRuleGroup(params = {}, callback) ⇒ AWS.Request

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.

Service Reference:

Examples:

Calling the createRuleGroup operation

var params = {
  Capacity: 'NUMBER_VALUE', /* required */
  RuleGroupName: 'STRING_VALUE', /* required */
  Type: STATELESS | STATEFUL, /* required */
  Description: 'STRING_VALUE',
  DryRun: true || false,
  RuleGroup: {
    RulesSource: { /* required */
      RulesSourceList: {
        GeneratedRulesType: ALLOWLIST | DENYLIST, /* required */
        TargetTypes: [ /* required */
          TLS_SNI | HTTP_HOST,
          /* more items */
        ],
        Targets: [ /* required */
          'STRING_VALUE',
          /* more items */
        ]
      },
      RulesString: 'STRING_VALUE',
      StatefulRules: [
        {
          Action: PASS | DROP | ALERT, /* required */
          Header: { /* required */
            Destination: 'STRING_VALUE', /* required */
            DestinationPort: 'STRING_VALUE', /* required */
            Direction: FORWARD | ANY, /* required */
            Protocol: IP | TCP | UDP | ICMP | HTTP | FTP | TLS | SMB | DNS | DCERPC | SSH | SMTP | IMAP | MSN | KRB5 | IKEV2 | TFTP | NTP | DHCP, /* required */
            Source: 'STRING_VALUE', /* required */
            SourcePort: 'STRING_VALUE' /* required */
          },
          RuleOptions: [ /* required */
            {
              Keyword: 'STRING_VALUE', /* required */
              Settings: [
                'STRING_VALUE',
                /* more items */
              ]
            },
            /* more items */
          ]
        },
        /* more items */
      ],
      StatelessRulesAndCustomActions: {
        StatelessRules: [ /* required */
          {
            Priority: 'NUMBER_VALUE', /* required */
            RuleDefinition: { /* required */
              Actions: [ /* required */
                'STRING_VALUE',
                /* more items */
              ],
              MatchAttributes: { /* required */
                DestinationPorts: [
                  {
                    FromPort: 'NUMBER_VALUE', /* required */
                    ToPort: 'NUMBER_VALUE' /* required */
                  },
                  /* more items */
                ],
                Destinations: [
                  {
                    AddressDefinition: 'STRING_VALUE' /* required */
                  },
                  /* more items */
                ],
                Protocols: [
                  'NUMBER_VALUE',
                  /* more items */
                ],
                SourcePorts: [
                  {
                    FromPort: 'NUMBER_VALUE', /* required */
                    ToPort: 'NUMBER_VALUE' /* required */
                  },
                  /* more items */
                ],
                Sources: [
                  {
                    AddressDefinition: 'STRING_VALUE' /* required */
                  },
                  /* more items */
                ],
                TCPFlags: [
                  {
                    Flags: [ /* required */
                      FIN | SYN | RST | PSH | ACK | URG | ECE | CWR,
                      /* more items */
                    ],
                    Masks: [
                      FIN | SYN | RST | PSH | ACK | URG | ECE | CWR,
                      /* more items */
                    ]
                  },
                  /* more items */
                ]
              }
            }
          },
          /* more items */
        ],
        CustomActions: [
          {
            ActionDefinition: { /* required */
              PublishMetricAction: {
                Dimensions: [ /* required */
                  {
                    Value: 'STRING_VALUE' /* required */
                  },
                  /* more items */
                ]
              }
            },
            ActionName: 'STRING_VALUE' /* required */
          },
          /* more items */
        ]
      }
    },
    RuleVariables: {
      IPSets: {
        '<RuleVariableName>': {
          Definition: [ /* required */
            'STRING_VALUE',
            /* more items */
          ]
        },
        /* '<RuleVariableName>': ... */
      },
      PortSets: {
        '<RuleVariableName>': {
          Definition: [
            'STRING_VALUE',
            /* more items */
          ]
        },
        /* '<RuleVariableName>': ... */
      }
    },
    StatefulRuleOptions: {
      RuleOrder: DEFAULT_ACTION_ORDER | STRICT_ORDER
    }
  },
  Rules: 'STRING_VALUE',
  Tags: [
    {
      Key: 'STRING_VALUE', /* required */
      Value: 'STRING_VALUE' /* required */
    },
    /* more items */
  ]
};
networkfirewall.createRuleGroup(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • RuleGroupName — (String)

      The descriptive name of the rule group. You can't change the name of a rule group after you create it.

    • RuleGroup — (map)

      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 — (map)

        Settings that are available for use in the rules in the rule group. You can only use these for stateful rule groups.

        • IPSets — (map<map>)

          A list of IP addresses and address ranges, in CIDR notation.

          • Definitionrequired — (Array<String>)

            The list of IP addresses and address ranges, in CIDR notation.

        • PortSets — (map<map>)

          A list of port ranges.

          • Definition — (Array<String>)

            The set of port ranges.

      • RulesSourcerequired — (map)

        The stateful rules or stateless rules for the rule group.

        • RulesString — (String)

          Stateful inspection criteria, provided in Suricata compatible intrusion prevention system (IPS) rules. Suricata is an open-source network IPS 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.

        • RulesSourceList — (map)

          Stateful inspection criteria for a domain list rule group.

          • Targetsrequired — (Array<String>)

            The domains that you want to inspect for in your traffic flows. To provide multiple domains, separate them with commas. 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.

          • TargetTypesrequired — (Array<String>)

            The protocols you want to inspect. Specify TLS_SNI for HTTPS. Specify HTTP_HOST for HTTP. You can specify either or both.

          • GeneratedRulesTyperequired — (String)

            Whether you want to allow or deny access to the domains in your target list.

            Possible values include:
            • "ALLOWLIST"
            • "DENYLIST"
        • StatefulRules — (Array<map>)

          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.

          • Actionrequired — (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 - Permits the packets to go to the intended destination and 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.

            Possible values include:
            • "PASS"
            • "DROP"
            • "ALERT"
          • Headerrequired — (map)

            The stateful inspection criteria for this rule, used to inspect traffic flows.

            • Protocolrequired — (String)

              The protocol to inspect for. To specify all, you can use IP, because all traffic on AWS and on the internet is IP.

              Possible values include:
              • "IP"
              • "TCP"
              • "UDP"
              • "ICMP"
              • "HTTP"
              • "FTP"
              • "TLS"
              • "SMB"
              • "DNS"
              • "DCERPC"
              • "SSH"
              • "SMTP"
              • "IMAP"
              • "MSN"
              • "KRB5"
              • "IKEV2"
              • "TFTP"
              • "NTP"
              • "DHCP"
            • Sourcerequired — (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.

              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.

              For more information about CIDR notation, see the Wikipedia entry Classless Inter-Domain Routing.

            • SourcePortrequired — (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.

            • Directionrequired — (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.

              Possible values include:
              • "FORWARD"
              • "ANY"
            • Destinationrequired — (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.

              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.

              For more information about CIDR notation, see the Wikipedia entry Classless Inter-Domain Routing.

            • DestinationPortrequired — (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.

          • RuleOptionsrequired — (Array<map>)

            Additional options for the rule. These are the Suricata RuleOptions settings.

            • Keywordrequired — (String)

            • Settings — (Array<String>)

        • StatelessRulesAndCustomActions — (map)

          Stateless inspection criteria to be used in a stateless rule group.

          • StatelessRulesrequired — (Array<map>)

            Defines the set of stateless rules for use in a stateless rule group.

            • RuleDefinitionrequired — (map)

              Defines the stateless 5-tuple packet inspection criteria and the action to take on a packet that matches the criteria.

              • MatchAttributesrequired — (map)

                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 — (Array<map>)

                  The source IP addresses and address ranges to inspect for, in CIDR notation. If not specified, this matches with any source address.

                  • AddressDefinitionrequired — (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.

                    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.

                    For more information about CIDR notation, see the Wikipedia entry Classless Inter-Domain Routing.

                • Destinations — (Array<map>)

                  The destination IP addresses and address ranges to inspect for, in CIDR notation. If not specified, this matches with any destination address.

                  • AddressDefinitionrequired — (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.

                    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.

                    For more information about CIDR notation, see the Wikipedia entry Classless Inter-Domain Routing.

                • SourcePorts — (Array<map>)

                  The source ports to inspect for. If not specified, this matches with any source port. This setting is only used for protocols 6 (TCP) and 17 (UDP).

                  You can specify individual ports, for example 1994 and you can specify port ranges, for example 1990:1994.

                  • FromPortrequired — (Integer)

                    The lower limit of the port range. This must be less than or equal to the ToPort specification.

                  • ToPortrequired — (Integer)

                    The upper limit of the port range. This must be greater than or equal to the FromPort specification.

                • DestinationPorts — (Array<map>)

                  The destination ports to inspect for. If not specified, this matches with any destination port. This setting is only used for protocols 6 (TCP) and 17 (UDP).

                  You can specify individual ports, for example 1994 and you can specify port ranges, for example 1990:1994.

                  • FromPortrequired — (Integer)

                    The lower limit of the port range. This must be less than or equal to the ToPort specification.

                  • ToPortrequired — (Integer)

                    The upper limit of the port range. This must be greater than or equal to the FromPort specification.

                • Protocols — (Array<Integer>)

                  The protocols to inspect for, specified using each protocol's assigned internet protocol number (IANA). If not specified, this matches with any protocol.

                • TCPFlags — (Array<map>)

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

                  • Flagsrequired — (Array<String>)

                    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.

                  • Masks — (Array<String>)

                    The set of flags to consider in the inspection. To inspect all flags in the valid values list, leave this with no setting.

              • Actionsrequired — (Array<String>)

                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”].

            • Priorityrequired — (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 — (Array<map>)

            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.

            • ActionNamerequired — (String)

              The descriptive name of the custom action. You can't change the name of a custom action after you create it.

            • ActionDefinitionrequired — (map)

              The custom action associated with the action name.

              • PublishMetricAction — (map)

                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.

                • Dimensionsrequired — (Array<map>)

                  • Valuerequired — (String)

                    The value to use in the custom metric dimension.

      • StatefulRuleOptions — (map)

        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.

        • RuleOrder — (String)

          Indicates how to manage the order of the rule evaluation for the rule group. By default, Network Firewall leaves the rule evaluation order up to the Suricata rule processing engine. If you set this to STRICT_ORDER, your rules are evaluated in the exact order that they're listed in your Suricata rules string.

          Possible values include:
          • "DEFAULT_ACTION_ORDER"
          • "STRICT_ORDER"
    • 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.

      Possible values include:
      • "STATELESS"
      • "STATEFUL"
    • Description — (String)

      A description of the rule group.

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

      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 — (Array<map>)

      The key:value pairs to associate with the resource.

      • Keyrequired — (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.

      • Valuerequired — (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.

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

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • 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 — (map)

        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.

        • RuleGroupArnrequired — (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.
        • RuleGroupNamerequired — (String)

          The descriptive name of the rule group. You can't change the name of a rule group after you create it.

        • RuleGroupIdrequired — (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.

          Possible values include:
          • "STATELESS"
          • "STATEFUL"
        • 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.

          Possible values include:
          • "ACTIVE"
          • "DELETING"
        • Tags — (Array<map>)

          The key:value pairs to associate with the resource.

          • Keyrequired — (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.

          • Valuerequired — (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.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

deleteFirewall(params = {}, callback) ⇒ AWS.Request

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.

Service Reference:

Examples:

Calling the deleteFirewall operation

var params = {
  FirewallArn: 'STRING_VALUE',
  FirewallName: 'STRING_VALUE'
};
networkfirewall.deleteFirewall(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • 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.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • Firewall — (map)

        The firewall defines the configuration settings for an AWS Network Firewall firewall. These settings include the firewall policy, the subnets in your VPC to use for the firewall endpoints, and any tags that are attached to the firewall AWS resource.

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

        • FirewallPolicyArnrequired — (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.

        • VpcIdrequired — (String)

          The unique identifier of the VPC where the firewall is in use.

        • SubnetMappingsrequired — (Array<map>)

          The public subnets that Network Firewall is using for the firewall. Each subnet must belong to a different Availability Zone.

          • SubnetIdrequired — (String)

            The unique identifier for 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.

        • FirewallIdrequired — (String)

          The unique identifier for the firewall.

        • Tags — (Array<map>)

          • Keyrequired — (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.

          • Valuerequired — (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.

      • FirewallStatus — (map)

        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.

        • Statusrequired — (String)

          The readiness of the configured firewall to handle network traffic across all of the Availability Zones where you've configured it. 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.

          Possible values include:
          • "PROVISIONING"
          • "DELETING"
          • "READY"
        • ConfigurationSyncStateSummaryrequired — (String)

          The configuration sync state for the firewall. This summarizes the sync states reported in the Config settings for all of the Availability Zones where you have configured the firewall.

          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 zones where the firewall is in use. 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.

          Possible values include:
          • "PENDING"
          • "IN_SYNC"
        • SyncStates — (map<map>)

          The subnets that you've configured for use by the Network Firewall firewall. This contains one array element per Availability Zone where you've configured a subnet. These objects provide details of the information that is summarized in the ConfigurationSyncStateSummary and Status, broken down by zone and configuration object.

          • Attachment — (map)

            The attachment status of the firewall's association with a single VPC 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. This is part of the FirewallStatus.

            • 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 in the subnet. This value reflects both the instantiation of the endpoint in the VPC subnet and the sync states that are reported in the Config settings. When this value is READY, the endpoint is available and configured properly to handle network traffic. When the endpoint isn't available for traffic, this value will reflect its state, for example CREATING, DELETING, or FAILED.

              Possible values include:
              • "CREATING"
              • "DELETING"
              • "SCALING"
              • "READY"
          • Config — (map<map>)

            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. This is part of the FirewallStatus.

            • SyncStatus — (String)

              Indicates whether this object is in sync with the version indicated in the update token.

              Possible values include:
              • "PENDING"
              • "IN_SYNC"
            • UpdateToken — (String)

              The current version of the object that is either in sync or pending synchronization.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

deleteFirewallPolicy(params = {}, callback) ⇒ AWS.Request

Deletes the specified FirewallPolicy.

Service Reference:

Examples:

Calling the deleteFirewallPolicy operation

var params = {
  FirewallPolicyArn: 'STRING_VALUE',
  FirewallPolicyName: 'STRING_VALUE'
};
networkfirewall.deleteFirewallPolicy(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • 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.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • FirewallPolicyResponse — (map)

        The object containing the definition of the FirewallPolicyResponse that you asked to delete.

        • FirewallPolicyNamerequired — (String)

          The descriptive name of the firewall policy. You can't change the name of a firewall policy after you create it.

        • FirewallPolicyArnrequired — (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.
        • FirewallPolicyIdrequired — (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.

          Possible values include:
          • "ACTIVE"
          • "DELETING"
        • Tags — (Array<map>)

          The key:value pairs to associate with the resource.

          • Keyrequired — (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.

          • Valuerequired — (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.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

deleteResourcePolicy(params = {}, callback) ⇒ AWS.Request

Deletes a resource policy that you created in a PutResourcePolicy request.

Service Reference:

Examples:

Calling the deleteResourcePolicy operation

var params = {
  ResourceArn: 'STRING_VALUE' /* required */
};
networkfirewall.deleteResourcePolicy(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • ResourceArn — (String)

      The Amazon Resource Name (ARN) of the rule group or firewall policy whose resource policy you want to delete.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

deleteRuleGroup(params = {}, callback) ⇒ AWS.Request

Deletes the specified RuleGroup.

Service Reference:

Examples:

Calling the deleteRuleGroup operation

var params = {
  RuleGroupArn: 'STRING_VALUE',
  RuleGroupName: 'STRING_VALUE',
  Type: STATELESS | STATEFUL
};
networkfirewall.deleteRuleGroup(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • 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.
      Possible values include:
      • "STATELESS"
      • "STATEFUL"

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • RuleGroupResponse — (map)

        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.

        • RuleGroupArnrequired — (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.
        • RuleGroupNamerequired — (String)

          The descriptive name of the rule group. You can't change the name of a rule group after you create it.

        • RuleGroupIdrequired — (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.

          Possible values include:
          • "STATELESS"
          • "STATEFUL"
        • 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.

          Possible values include:
          • "ACTIVE"
          • "DELETING"
        • Tags — (Array<map>)

          The key:value pairs to associate with the resource.

          • Keyrequired — (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.

          • Valuerequired — (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.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

describeFirewall(params = {}, callback) ⇒ AWS.Request

Returns the data objects for the specified firewall.

Service Reference:

Examples:

Calling the describeFirewall operation

var params = {
  FirewallArn: 'STRING_VALUE',
  FirewallName: 'STRING_VALUE'
};
networkfirewall.describeFirewall(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • 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.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • 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 — (map)

        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.

        • FirewallPolicyArnrequired — (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.

        • VpcIdrequired — (String)

          The unique identifier of the VPC where the firewall is in use.

        • SubnetMappingsrequired — (Array<map>)

          The public subnets that Network Firewall is using for the firewall. Each subnet must belong to a different Availability Zone.

          • SubnetIdrequired — (String)

            The unique identifier for 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.

        • FirewallIdrequired — (String)

          The unique identifier for the firewall.

        • Tags — (Array<map>)

          • Keyrequired — (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.

          • Valuerequired — (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.

      • FirewallStatus — (map)

        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.

        • Statusrequired — (String)

          The readiness of the configured firewall to handle network traffic across all of the Availability Zones where you've configured it. 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.

          Possible values include:
          • "PROVISIONING"
          • "DELETING"
          • "READY"
        • ConfigurationSyncStateSummaryrequired — (String)

          The configuration sync state for the firewall. This summarizes the sync states reported in the Config settings for all of the Availability Zones where you have configured the firewall.

          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 zones where the firewall is in use. 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.

          Possible values include:
          • "PENDING"
          • "IN_SYNC"
        • SyncStates — (map<map>)

          The subnets that you've configured for use by the Network Firewall firewall. This contains one array element per Availability Zone where you've configured a subnet. These objects provide details of the information that is summarized in the ConfigurationSyncStateSummary and Status, broken down by zone and configuration object.

          • Attachment — (map)

            The attachment status of the firewall's association with a single VPC 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. This is part of the FirewallStatus.

            • 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 in the subnet. This value reflects both the instantiation of the endpoint in the VPC subnet and the sync states that are reported in the Config settings. When this value is READY, the endpoint is available and configured properly to handle network traffic. When the endpoint isn't available for traffic, this value will reflect its state, for example CREATING, DELETING, or FAILED.

              Possible values include:
              • "CREATING"
              • "DELETING"
              • "SCALING"
              • "READY"
          • Config — (map<map>)

            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. This is part of the FirewallStatus.

            • SyncStatus — (String)

              Indicates whether this object is in sync with the version indicated in the update token.

              Possible values include:
              • "PENDING"
              • "IN_SYNC"
            • UpdateToken — (String)

              The current version of the object that is either in sync or pending synchronization.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

describeFirewallPolicy(params = {}, callback) ⇒ AWS.Request

Returns the data objects for the specified firewall policy.

Service Reference:

Examples:

Calling the describeFirewallPolicy operation

var params = {
  FirewallPolicyArn: 'STRING_VALUE',
  FirewallPolicyName: 'STRING_VALUE'
};
networkfirewall.describeFirewallPolicy(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • 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.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • 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 — (map)

        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.

        • FirewallPolicyNamerequired — (String)

          The descriptive name of the firewall policy. You can't change the name of a firewall policy after you create it.

        • FirewallPolicyArnrequired — (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.
        • FirewallPolicyIdrequired — (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.

          Possible values include:
          • "ACTIVE"
          • "DELETING"
        • Tags — (Array<map>)

          The key:value pairs to associate with the resource.

          • Keyrequired — (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.

          • Valuerequired — (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.

      • FirewallPolicy — (map)

        The policy for the specified firewall policy.

        • StatelessRuleGroupReferences — (Array<map>)

          References to the stateless rule groups that are used in the policy. These define the matching criteria in stateless rules.

          • ResourceArnrequired — (String)

            The Amazon Resource Name (ARN) of the stateless rule group.

          • Priorityrequired — (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.

        • StatelessDefaultActionsrequired — (Array<String>)

          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.

        • StatelessFragmentDefaultActionsrequired — (Array<String>)

          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.

        • StatelessCustomActions — (Array<map>)

          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.

          • ActionNamerequired — (String)

            The descriptive name of the custom action. You can't change the name of a custom action after you create it.

          • ActionDefinitionrequired — (map)

            The custom action associated with the action name.

            • PublishMetricAction — (map)

              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.

              • Dimensionsrequired — (Array<map>)

                • Valuerequired — (String)

                  The value to use in the custom metric dimension.

        • StatefulRuleGroupReferences — (Array<map>)

          References to the stateful rule groups that are used in the policy. These define the inspection criteria in stateful rules.

          • ResourceArnrequired — (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.

        • StatefulDefaultActions — (Array<String>)

          The default actions to take on a packet that doesn't match any stateful rules.

        • StatefulEngineOptions — (map)

          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. By default, Network Firewall leaves the rule evaluation order up to the Suricata rule processing engine. If you set this to STRICT_ORDER, your rules are evaluated in the exact order that you provide them in the policy. With strict ordering, the rule groups are evaluated by order of priority, starting from the lowest number, and the rules in each rule group are processed in the order that they're defined.

            Possible values include:
            • "DEFAULT_ACTION_ORDER"
            • "STRICT_ORDER"

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

describeLoggingConfiguration(params = {}, callback) ⇒ AWS.Request

Returns the logging configuration for the specified firewall.

Service Reference:

Examples:

Calling the describeLoggingConfiguration operation

var params = {
  FirewallArn: 'STRING_VALUE',
  FirewallName: 'STRING_VALUE'
};
networkfirewall.describeLoggingConfiguration(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • 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.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • FirewallArn — (String)

        The Amazon Resource Name (ARN) of the firewall.

      • LoggingConfiguration — (map)

        Defines how AWS Network Firewall performs logging for a Firewall.

        • LogDestinationConfigsrequired — (Array<map>)

          Defines the logging destinations for the logs for a firewall. Network Firewall generates logs for stateful rule groups.

          • LogTyperequired — (String)

            The type of log to send. Alert logs report traffic that matches a StatefulRule with an action setting that sends an alert log message. Flow logs are standard network traffic flow logs.

            Possible values include:
            • "ALERT"
            • "FLOW"
          • LogDestinationTyperequired — (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 Kinesis Data Firehose delivery stream.

            Possible values include:
            • "S3"
            • "CloudWatchLogs"
            • "KinesisDataFirehose"
          • LogDestinationrequired — (map<String>)

            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 Kinesis Data 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" }

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

describeResourcePolicy(params = {}, callback) ⇒ AWS.Request

Retrieves a resource policy that you created in a PutResourcePolicy request.

Service Reference:

Examples:

Calling the describeResourcePolicy operation

var params = {
  ResourceArn: 'STRING_VALUE' /* required */
};
networkfirewall.describeResourcePolicy(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • ResourceArn — (String)

      The Amazon Resource Name (ARN) of the rule group or firewall policy whose resource policy you want to retrieve.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • Policy — (String)

        The AWS Identity and Access Management policy for the resource.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

describeRuleGroup(params = {}, callback) ⇒ AWS.Request

Returns the data objects for the specified rule group.

Service Reference:

Examples:

Calling the describeRuleGroup operation

var params = {
  RuleGroupArn: 'STRING_VALUE',
  RuleGroupName: 'STRING_VALUE',
  Type: STATELESS | STATEFUL
};
networkfirewall.describeRuleGroup(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • 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.
      Possible values include:
      • "STATELESS"
      • "STATEFUL"

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • 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 — (map)

        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.

        AWS 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 — (map)

          Settings that are available for use in the rules in the rule group. You can only use these for stateful rule groups.

          • IPSets — (map<map>)

            A list of IP addresses and address ranges, in CIDR notation.

            • Definitionrequired — (Array<String>)

              The list of IP addresses and address ranges, in CIDR notation.

          • PortSets — (map<map>)

            A list of port ranges.

            • Definition — (Array<String>)

              The set of port ranges.

        • RulesSourcerequired — (map)

          The stateful rules or stateless rules for the rule group.

          • RulesString — (String)

            Stateful inspection criteria, provided in Suricata compatible intrusion prevention system (IPS) rules. Suricata is an open-source network IPS 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.

          • RulesSourceList — (map)

            Stateful inspection criteria for a domain list rule group.

            • Targetsrequired — (Array<String>)

              The domains that you want to inspect for in your traffic flows. To provide multiple domains, separate them with commas. 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.

            • TargetTypesrequired — (Array<String>)

              The protocols you want to inspect. Specify TLS_SNI for HTTPS. Specify HTTP_HOST for HTTP. You can specify either or both.

            • GeneratedRulesTyperequired — (String)

              Whether you want to allow or deny access to the domains in your target list.

              Possible values include:
              • "ALLOWLIST"
              • "DENYLIST"
          • StatefulRules — (Array<map>)

            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.

            • Actionrequired — (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 - Permits the packets to go to the intended destination and 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.

              Possible values include:
              • "PASS"
              • "DROP"
              • "ALERT"
            • Headerrequired — (map)

              The stateful inspection criteria for this rule, used to inspect traffic flows.

              • Protocolrequired — (String)

                The protocol to inspect for. To specify all, you can use IP, because all traffic on AWS and on the internet is IP.

                Possible values include:
                • "IP"
                • "TCP"
                • "UDP"
                • "ICMP"
                • "HTTP"
                • "FTP"
                • "TLS"
                • "SMB"
                • "DNS"
                • "DCERPC"
                • "SSH"
                • "SMTP"
                • "IMAP"
                • "MSN"
                • "KRB5"
                • "IKEV2"
                • "TFTP"
                • "NTP"
                • "DHCP"
              • Sourcerequired — (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.

                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.

                For more information about CIDR notation, see the Wikipedia entry Classless Inter-Domain Routing.

              • SourcePortrequired — (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.

              • Directionrequired — (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.

                Possible values include:
                • "FORWARD"
                • "ANY"
              • Destinationrequired — (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.

                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.

                For more information about CIDR notation, see the Wikipedia entry Classless Inter-Domain Routing.

              • DestinationPortrequired — (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.

            • RuleOptionsrequired — (Array<map>)

              Additional options for the rule. These are the Suricata RuleOptions settings.

              • Keywordrequired — (String)

              • Settings — (Array<String>)

          • StatelessRulesAndCustomActions — (map)

            Stateless inspection criteria to be used in a stateless rule group.

            • StatelessRulesrequired — (Array<map>)

              Defines the set of stateless rules for use in a stateless rule group.

              • RuleDefinitionrequired — (map)

                Defines the stateless 5-tuple packet inspection criteria and the action to take on a packet that matches the criteria.

                • MatchAttributesrequired — (map)

                  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 — (Array<map>)

                    The source IP addresses and address ranges to inspect for, in CIDR notation. If not specified, this matches with any source address.

                    • AddressDefinitionrequired — (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.

                      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.

                      For more information about CIDR notation, see the Wikipedia entry Classless Inter-Domain Routing.

                  • Destinations — (Array<map>)

                    The destination IP addresses and address ranges to inspect for, in CIDR notation. If not specified, this matches with any destination address.

                    • AddressDefinitionrequired — (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.

                      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.

                      For more information about CIDR notation, see the Wikipedia entry Classless Inter-Domain Routing.

                  • SourcePorts — (Array<map>)

                    The source ports to inspect for. If not specified, this matches with any source port. This setting is only used for protocols 6 (TCP) and 17 (UDP).

                    You can specify individual ports, for example 1994 and you can specify port ranges, for example 1990:1994.

                    • FromPortrequired — (Integer)

                      The lower limit of the port range. This must be less than or equal to the ToPort specification.

                    • ToPortrequired — (Integer)

                      The upper limit of the port range. This must be greater than or equal to the FromPort specification.

                  • DestinationPorts — (Array<map>)

                    The destination ports to inspect for. If not specified, this matches with any destination port. This setting is only used for protocols 6 (TCP) and 17 (UDP).

                    You can specify individual ports, for example 1994 and you can specify port ranges, for example 1990:1994.

                    • FromPortrequired — (Integer)

                      The lower limit of the port range. This must be less than or equal to the ToPort specification.

                    • ToPortrequired — (Integer)

                      The upper limit of the port range. This must be greater than or equal to the FromPort specification.

                  • Protocols — (Array<Integer>)

                    The protocols to inspect for, specified using each protocol's assigned internet protocol number (IANA). If not specified, this matches with any protocol.

                  • TCPFlags — (Array<map>)

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

                    • Flagsrequired — (Array<String>)

                      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.

                    • Masks — (Array<String>)

                      The set of flags to consider in the inspection. To inspect all flags in the valid values list, leave this with no setting.

                • Actionsrequired — (Array<String>)

                  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”].

              • Priorityrequired — (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 — (Array<map>)

              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.

              • ActionNamerequired — (String)

                The descriptive name of the custom action. You can't change the name of a custom action after you create it.

              • ActionDefinitionrequired — (map)

                The custom action associated with the action name.

                • PublishMetricAction — (map)

                  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.

                  • Dimensionsrequired — (Array<map>)

                    • Valuerequired — (String)

                      The value to use in the custom metric dimension.

        • StatefulRuleOptions — (map)

          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.

          • RuleOrder — (String)

            Indicates how to manage the order of the rule evaluation for the rule group. By default, Network Firewall leaves the rule evaluation order up to the Suricata rule processing engine. If you set this to STRICT_ORDER, your rules are evaluated in the exact order that they're listed in your Suricata rules string.

            Possible values include:
            • "DEFAULT_ACTION_ORDER"
            • "STRICT_ORDER"
      • RuleGroupResponse — (map)

        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.

        • RuleGroupArnrequired — (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.
        • RuleGroupNamerequired — (String)

          The descriptive name of the rule group. You can't change the name of a rule group after you create it.

        • RuleGroupIdrequired — (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.

          Possible values include:
          • "STATELESS"
          • "STATEFUL"
        • 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.

          Possible values include:
          • "ACTIVE"
          • "DELETING"
        • Tags — (Array<map>)

          The key:value pairs to associate with the resource.

          • Keyrequired — (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.

          • Valuerequired — (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.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

disassociateSubnets(params = {}, callback) ⇒ AWS.Request

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.

Service Reference:

Examples:

Calling the disassociateSubnets operation

var params = {
  SubnetIds: [ /* required */
    'STRING_VALUE',
    /* more items */
  ],
  FirewallArn: 'STRING_VALUE',
  FirewallName: 'STRING_VALUE',
  UpdateToken: 'STRING_VALUE'
};
networkfirewall.disassociateSubnets(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • 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 — (Array<String>)

      The unique identifiers for the subnets that you want to disassociate.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • 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 — (Array<map>)

        The IDs of the subnets that are associated with the firewall.

        • SubnetIdrequired — (String)

          The unique identifier for 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.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

listFirewallPolicies(params = {}, callback) ⇒ AWS.Request

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.

Service Reference:

Examples:

Calling the listFirewallPolicies operation

var params = {
  MaxResults: 'NUMBER_VALUE',
  NextToken: 'STRING_VALUE'
};
networkfirewall.listFirewallPolicies(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • 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.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • 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 — (Array<map>)

        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.

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

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

listFirewalls(params = {}, callback) ⇒ AWS.Request

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.

Service Reference:

Examples:

Calling the listFirewalls operation

var params = {
  MaxResults: 'NUMBER_VALUE',
  NextToken: 'STRING_VALUE',
  VpcIds: [
    'STRING_VALUE',
    /* more items */
  ]
};
networkfirewall.listFirewalls(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • 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 — (Array<String>)

      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.

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

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • 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 — (Array<map>)

        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.

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

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

listRuleGroups(params = {}, callback) ⇒ AWS.Request

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.

Service Reference:

Examples:

Calling the listRuleGroups operation

var params = {
  MaxResults: 'NUMBER_VALUE',
  NextToken: 'STRING_VALUE'
};
networkfirewall.listRuleGroups(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • 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.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • 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 — (Array<map>)

        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.

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

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

listTagsForResource(params = {}, callback) ⇒ AWS.Request

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 AWS resource, up to 50 tags for a resource.

You can tag the AWS resources that you manage through AWS Network Firewall: firewalls, firewall policies, and rule groups.

Service Reference:

Examples:

Calling the listTagsForResource operation

var params = {
  ResourceArn: 'STRING_VALUE', /* required */
  MaxResults: 'NUMBER_VALUE',
  NextToken: 'STRING_VALUE'
};
networkfirewall.listTagsForResource(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • 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)

      The Amazon Resource Name (ARN) of the resource.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • 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 — (Array<map>)

        The tags that are associated with the resource.

        • Keyrequired — (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.

        • Valuerequired — (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.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

putResourcePolicy(params = {}, callback) ⇒ AWS.Request

Creates or updates an AWS Identity and Access Management policy for your rule group or firewall policy. Use this to share rule groups and firewall policies between accounts. This operation works in conjunction with the AWS Resource Access Manager (RAM) service to manage resource sharing for Network Firewall.

Use this operation to create or update a resource policy for your rule group or firewall policy. In the policy, you specify the accounts that you want to share the 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 rule group or firewall policy.

For additional information about resource sharing using RAM, see AWS Resource Access Manager User Guide.

Service Reference:

Examples:

Calling the putResourcePolicy operation

var params = {
  Policy: 'STRING_VALUE', /* required */
  ResourceArn: 'STRING_VALUE' /* required */
};
networkfirewall.putResourcePolicy(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • ResourceArn — (String)

      The Amazon Resource Name (ARN) of the account that you want to share rule groups and firewall policies with.

    • Policy — (String)

      The AWS Identity and Access Management policy statement that lists the accounts that you want to share your rule group or firewall policy 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:CreateFirewall

      • network-firewall:UpdateFirewall

      • network-firewall:AssociateFirewallPolicy

      • network-firewall:ListFirewallPolicies

      In the Resource section of the statement, you specify the ARNs for the rule groups and firewall policies that you want to share with the account that you specified in Arn.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

tagResource(params = {}, callback) ⇒ AWS.Request

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 AWS resource, up to 50 tags for a resource.

You can tag the AWS resources that you manage through AWS Network Firewall: firewalls, firewall policies, and rule groups.

Service Reference:

Examples:

Calling the tagResource operation

var params = {
  ResourceArn: 'STRING_VALUE', /* required */
  Tags: [ /* required */
    {
      Key: 'STRING_VALUE', /* required */
      Value: 'STRING_VALUE' /* required */
    },
    /* more items */
  ]
};
networkfirewall.tagResource(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • ResourceArn — (String)

      The Amazon Resource Name (ARN) of the resource.

    • Tags — (Array<map>)

      • Keyrequired — (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.

      • Valuerequired — (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.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

untagResource(params = {}, callback) ⇒ AWS.Request

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 AWS resource, up to 50 tags for a resource.

You can manage tags for the AWS resources that you manage through AWS Network Firewall: firewalls, firewall policies, and rule groups.

Service Reference:

Examples:

Calling the untagResource operation

var params = {
  ResourceArn: 'STRING_VALUE', /* required */
  TagKeys: [ /* required */
    'STRING_VALUE',
    /* more items */
  ]
};
networkfirewall.untagResource(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • ResourceArn — (String)

      The Amazon Resource Name (ARN) of the resource.

    • TagKeys — (Array<String>)

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

updateFirewallDeleteProtection(params = {}, callback) ⇒ AWS.Request

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.

Service Reference:

Examples:

Calling the updateFirewallDeleteProtection operation

var params = {
  DeleteProtection: true || false, /* required */
  FirewallArn: 'STRING_VALUE',
  FirewallName: 'STRING_VALUE',
  UpdateToken: 'STRING_VALUE'
};
networkfirewall.updateFirewallDeleteProtection(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • 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)

      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.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • 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)

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

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

updateFirewallDescription(params = {}, callback) ⇒ AWS.Request

Modifies the description for the specified firewall. Use the description to help you identify the firewall when you're working with it.

Service Reference:

Examples:

Calling the updateFirewallDescription operation

var params = {
  Description: 'STRING_VALUE',
  FirewallArn: 'STRING_VALUE',
  FirewallName: 'STRING_VALUE',
  UpdateToken: 'STRING_VALUE'
};
networkfirewall.updateFirewallDescription(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • 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.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

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

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

updateFirewallPolicy(params = {}, callback) ⇒ AWS.Request

Updates the properties of the specified firewall policy.

Service Reference:

Examples:

Calling the updateFirewallPolicy operation

var params = {
  FirewallPolicy: { /* required */
    StatelessDefaultActions: [ /* required */
      'STRING_VALUE',
      /* more items */
    ],
    StatelessFragmentDefaultActions: [ /* required */
      'STRING_VALUE',
      /* more items */
    ],
    StatefulDefaultActions: [
      'STRING_VALUE',
      /* more items */
    ],
    StatefulEngineOptions: {
      RuleOrder: DEFAULT_ACTION_ORDER | STRICT_ORDER
    },
    StatefulRuleGroupReferences: [
      {
        ResourceArn: 'STRING_VALUE', /* required */
        Priority: 'NUMBER_VALUE'
      },
      /* more items */
    ],
    StatelessCustomActions: [
      {
        ActionDefinition: { /* required */
          PublishMetricAction: {
            Dimensions: [ /* required */
              {
                Value: 'STRING_VALUE' /* required */
              },
              /* more items */
            ]
          }
        },
        ActionName: 'STRING_VALUE' /* required */
      },
      /* more items */
    ],
    StatelessRuleGroupReferences: [
      {
        Priority: 'NUMBER_VALUE', /* required */
        ResourceArn: 'STRING_VALUE' /* required */
      },
      /* more items */
    ]
  },
  UpdateToken: 'STRING_VALUE', /* required */
  Description: 'STRING_VALUE',
  DryRun: true || false,
  FirewallPolicyArn: 'STRING_VALUE',
  FirewallPolicyName: 'STRING_VALUE'
};
networkfirewall.updateFirewallPolicy(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • 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.

    • 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 — (map)

      The updated firewall policy to use for the firewall.

      • StatelessRuleGroupReferences — (Array<map>)

        References to the stateless rule groups that are used in the policy. These define the matching criteria in stateless rules.

        • ResourceArnrequired — (String)

          The Amazon Resource Name (ARN) of the stateless rule group.

        • Priorityrequired — (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.

      • StatelessDefaultActionsrequired — (Array<String>)

        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.

      • StatelessFragmentDefaultActionsrequired — (Array<String>)

        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.

      • StatelessCustomActions — (Array<map>)

        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.

        • ActionNamerequired — (String)

          The descriptive name of the custom action. You can't change the name of a custom action after you create it.

        • ActionDefinitionrequired — (map)

          The custom action associated with the action name.

          • PublishMetricAction — (map)

            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.

            • Dimensionsrequired — (Array<map>)

              • Valuerequired — (String)

                The value to use in the custom metric dimension.

      • StatefulRuleGroupReferences — (Array<map>)

        References to the stateful rule groups that are used in the policy. These define the inspection criteria in stateful rules.

        • ResourceArnrequired — (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.

      • StatefulDefaultActions — (Array<String>)

        The default actions to take on a packet that doesn't match any stateful rules.

      • StatefulEngineOptions — (map)

        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. By default, Network Firewall leaves the rule evaluation order up to the Suricata rule processing engine. If you set this to STRICT_ORDER, your rules are evaluated in the exact order that you provide them in the policy. With strict ordering, the rule groups are evaluated by order of priority, starting from the lowest number, and the rules in each rule group are processed in the order that they're defined.

          Possible values include:
          • "DEFAULT_ACTION_ORDER"
          • "STRICT_ORDER"
    • 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.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • 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 — (map)

        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.

        • FirewallPolicyNamerequired — (String)

          The descriptive name of the firewall policy. You can't change the name of a firewall policy after you create it.

        • FirewallPolicyArnrequired — (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.
        • FirewallPolicyIdrequired — (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.

          Possible values include:
          • "ACTIVE"
          • "DELETING"
        • Tags — (Array<map>)

          The key:value pairs to associate with the resource.

          • Keyrequired — (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.

          • Valuerequired — (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.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

updateFirewallPolicyChangeProtection(params = {}, callback) ⇒ AWS.Request

Examples:

Calling the updateFirewallPolicyChangeProtection operation

var params = {
  FirewallPolicyChangeProtection: true || false, /* required */
  FirewallArn: 'STRING_VALUE',
  FirewallName: 'STRING_VALUE',
  UpdateToken: 'STRING_VALUE'
};
networkfirewall.updateFirewallPolicyChangeProtection(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • 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)

      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.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

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

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

updateLoggingConfiguration(params = {}, callback) ⇒ AWS.Request

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.

Service Reference:

Examples:

Calling the updateLoggingConfiguration operation

var params = {
  FirewallArn: 'STRING_VALUE',
  FirewallName: 'STRING_VALUE',
  LoggingConfiguration: {
    LogDestinationConfigs: [ /* required */
      {
        LogDestination: { /* required */
          '<HashMapKey>': 'STRING_VALUE',
          /* '<HashMapKey>': ... */
        },
        LogDestinationType: S3 | CloudWatchLogs | KinesisDataFirehose, /* required */
        LogType: ALERT | FLOW /* required */
      },
      /* more items */
    ]
  }
};
networkfirewall.updateLoggingConfiguration(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • 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 — (map)

      Defines how Network Firewall performs logging for a firewall. If you omit this setting, Network Firewall disables logging for the firewall.

      • LogDestinationConfigsrequired — (Array<map>)

        Defines the logging destinations for the logs for a firewall. Network Firewall generates logs for stateful rule groups.

        • LogTyperequired — (String)

          The type of log to send. Alert logs report traffic that matches a StatefulRule with an action setting that sends an alert log message. Flow logs are standard network traffic flow logs.

          Possible values include:
          • "ALERT"
          • "FLOW"
        • LogDestinationTyperequired — (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 Kinesis Data Firehose delivery stream.

          Possible values include:
          • "S3"
          • "CloudWatchLogs"
          • "KinesisDataFirehose"
        • LogDestinationrequired — (map<String>)

          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 Kinesis Data 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" }

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • 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 — (map)

        Defines how AWS Network Firewall performs logging for a Firewall.

        • LogDestinationConfigsrequired — (Array<map>)

          Defines the logging destinations for the logs for a firewall. Network Firewall generates logs for stateful rule groups.

          • LogTyperequired — (String)

            The type of log to send. Alert logs report traffic that matches a StatefulRule with an action setting that sends an alert log message. Flow logs are standard network traffic flow logs.

            Possible values include:
            • "ALERT"
            • "FLOW"
          • LogDestinationTyperequired — (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 Kinesis Data Firehose delivery stream.

            Possible values include:
            • "S3"
            • "CloudWatchLogs"
            • "KinesisDataFirehose"
          • LogDestinationrequired — (map<String>)

            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 Kinesis Data 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" }

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

updateRuleGroup(params = {}, callback) ⇒ AWS.Request

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.

Service Reference:

Examples:

Calling the updateRuleGroup operation

var params = {
  UpdateToken: 'STRING_VALUE', /* required */
  Description: 'STRING_VALUE',
  DryRun: true || false,
  RuleGroup: {
    RulesSource: { /* required */
      RulesSourceList: {
        GeneratedRulesType: ALLOWLIST | DENYLIST, /* required */
        TargetTypes: [ /* required */
          TLS_SNI | HTTP_HOST,
          /* more items */
        ],
        Targets: [ /* required */
          'STRING_VALUE',
          /* more items */
        ]
      },
      RulesString: 'STRING_VALUE',
      StatefulRules: [
        {
          Action: PASS | DROP | ALERT, /* required */
          Header: { /* required */
            Destination: 'STRING_VALUE', /* required */
            DestinationPort: 'STRING_VALUE', /* required */
            Direction: FORWARD | ANY, /* required */
            Protocol: IP | TCP | UDP | ICMP | HTTP | FTP | TLS | SMB | DNS | DCERPC | SSH | SMTP | IMAP | MSN | KRB5 | IKEV2 | TFTP | NTP | DHCP, /* required */
            Source: 'STRING_VALUE', /* required */
            SourcePort: 'STRING_VALUE' /* required */
          },
          RuleOptions: [ /* required */
            {
              Keyword: 'STRING_VALUE', /* required */
              Settings: [
                'STRING_VALUE',
                /* more items */
              ]
            },
            /* more items */
          ]
        },
        /* more items */
      ],
      StatelessRulesAndCustomActions: {
        StatelessRules: [ /* required */
          {
            Priority: 'NUMBER_VALUE', /* required */
            RuleDefinition: { /* required */
              Actions: [ /* required */
                'STRING_VALUE',
                /* more items */
              ],
              MatchAttributes: { /* required */
                DestinationPorts: [
                  {
                    FromPort: 'NUMBER_VALUE', /* required */
                    ToPort: 'NUMBER_VALUE' /* required */
                  },
                  /* more items */
                ],
                Destinations: [
                  {
                    AddressDefinition: 'STRING_VALUE' /* required */
                  },
                  /* more items */
                ],
                Protocols: [
                  'NUMBER_VALUE',
                  /* more items */
                ],
                SourcePorts: [
                  {
                    FromPort: 'NUMBER_VALUE', /* required */
                    ToPort: 'NUMBER_VALUE' /* required */
                  },
                  /* more items */
                ],
                Sources: [
                  {
                    AddressDefinition: 'STRING_VALUE' /* required */
                  },
                  /* more items */
                ],
                TCPFlags: [
                  {
                    Flags: [ /* required */
                      FIN | SYN | RST | PSH | ACK | URG | ECE | CWR,
                      /* more items */
                    ],
                    Masks: [
                      FIN | SYN | RST | PSH | ACK | URG | ECE | CWR,
                      /* more items */
                    ]
                  },
                  /* more items */
                ]
              }
            }
          },
          /* more items */
        ],
        CustomActions: [
          {
            ActionDefinition: { /* required */
              PublishMetricAction: {
                Dimensions: [ /* required */
                  {
                    Value: 'STRING_VALUE' /* required */
                  },
                  /* more items */
                ]
              }
            },
            ActionName: 'STRING_VALUE' /* required */
          },
          /* more items */
        ]
      }
    },
    RuleVariables: {
      IPSets: {
        '<RuleVariableName>': {
          Definition: [ /* required */
            'STRING_VALUE',
            /* more items */
          ]
        },
        /* '<RuleVariableName>': ... */
      },
      PortSets: {
        '<RuleVariableName>': {
          Definition: [
            'STRING_VALUE',
            /* more items */
          ]
        },
        /* '<RuleVariableName>': ... */
      }
    },
    StatefulRuleOptions: {
      RuleOrder: DEFAULT_ACTION_ORDER | STRICT_ORDER
    }
  },
  RuleGroupArn: 'STRING_VALUE',
  RuleGroupName: 'STRING_VALUE',
  Rules: 'STRING_VALUE',
  Type: STATELESS | STATEFUL
};
networkfirewall.updateRuleGroup(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • 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.

    • 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 — (map)

      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 — (map)

        Settings that are available for use in the rules in the rule group. You can only use these for stateful rule groups.

        • IPSets — (map<map>)

          A list of IP addresses and address ranges, in CIDR notation.

          • Definitionrequired — (Array<String>)

            The list of IP addresses and address ranges, in CIDR notation.

        • PortSets — (map<map>)

          A list of port ranges.

          • Definition — (Array<String>)

            The set of port ranges.

      • RulesSourcerequired — (map)

        The stateful rules or stateless rules for the rule group.

        • RulesString — (String)

          Stateful inspection criteria, provided in Suricata compatible intrusion prevention system (IPS) rules. Suricata is an open-source network IPS 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.

        • RulesSourceList — (map)

          Stateful inspection criteria for a domain list rule group.

          • Targetsrequired — (Array<String>)

            The domains that you want to inspect for in your traffic flows. To provide multiple domains, separate them with commas. 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.

          • TargetTypesrequired — (Array<String>)

            The protocols you want to inspect. Specify TLS_SNI for HTTPS. Specify HTTP_HOST for HTTP. You can specify either or both.

          • GeneratedRulesTyperequired — (String)

            Whether you want to allow or deny access to the domains in your target list.

            Possible values include:
            • "ALLOWLIST"
            • "DENYLIST"
        • StatefulRules — (Array<map>)

          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.

          • Actionrequired — (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 - Permits the packets to go to the intended destination and 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.

            Possible values include:
            • "PASS"
            • "DROP"
            • "ALERT"
          • Headerrequired — (map)

            The stateful inspection criteria for this rule, used to inspect traffic flows.

            • Protocolrequired — (String)

              The protocol to inspect for. To specify all, you can use IP, because all traffic on AWS and on the internet is IP.

              Possible values include:
              • "IP"
              • "TCP"
              • "UDP"
              • "ICMP"
              • "HTTP"
              • "FTP"
              • "TLS"
              • "SMB"
              • "DNS"
              • "DCERPC"
              • "SSH"
              • "SMTP"
              • "IMAP"
              • "MSN"
              • "KRB5"
              • "IKEV2"
              • "TFTP"
              • "NTP"
              • "DHCP"
            • Sourcerequired — (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.

              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.

              For more information about CIDR notation, see the Wikipedia entry Classless Inter-Domain Routing.

            • SourcePortrequired — (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.

            • Directionrequired — (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.

              Possible values include:
              • "FORWARD"
              • "ANY"
            • Destinationrequired — (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.

              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.

              For more information about CIDR notation, see the Wikipedia entry Classless Inter-Domain Routing.

            • DestinationPortrequired — (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.

          • RuleOptionsrequired — (Array<map>)

            Additional options for the rule. These are the Suricata RuleOptions settings.

            • Keywordrequired — (String)

            • Settings — (Array<String>)

        • StatelessRulesAndCustomActions — (map)

          Stateless inspection criteria to be used in a stateless rule group.

          • StatelessRulesrequired — (Array<map>)

            Defines the set of stateless rules for use in a stateless rule group.

            • RuleDefinitionrequired — (map)

              Defines the stateless 5-tuple packet inspection criteria and the action to take on a packet that matches the criteria.

              • MatchAttributesrequired — (map)

                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 — (Array<map>)

                  The source IP addresses and address ranges to inspect for, in CIDR notation. If not specified, this matches with any source address.

                  • AddressDefinitionrequired — (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.

                    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.

                    For more information about CIDR notation, see the Wikipedia entry Classless Inter-Domain Routing.

                • Destinations — (Array<map>)

                  The destination IP addresses and address ranges to inspect for, in CIDR notation. If not specified, this matches with any destination address.

                  • AddressDefinitionrequired — (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.

                    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.

                    For more information about CIDR notation, see the Wikipedia entry Classless Inter-Domain Routing.

                • SourcePorts — (Array<map>)

                  The source ports to inspect for. If not specified, this matches with any source port. This setting is only used for protocols 6 (TCP) and 17 (UDP).

                  You can specify individual ports, for example 1994 and you can specify port ranges, for example 1990:1994.

                  • FromPortrequired — (Integer)

                    The lower limit of the port range. This must be less than or equal to the ToPort specification.

                  • ToPortrequired — (Integer)

                    The upper limit of the port range. This must be greater than or equal to the FromPort specification.

                • DestinationPorts — (Array<map>)

                  The destination ports to inspect for. If not specified, this matches with any destination port. This setting is only used for protocols 6 (TCP) and 17 (UDP).

                  You can specify individual ports, for example 1994 and you can specify port ranges, for example 1990:1994.

                  • FromPortrequired — (Integer)

                    The lower limit of the port range. This must be less than or equal to the ToPort specification.

                  • ToPortrequired — (Integer)

                    The upper limit of the port range. This must be greater than or equal to the FromPort specification.

                • Protocols — (Array<Integer>)

                  The protocols to inspect for, specified using each protocol's assigned internet protocol number (IANA). If not specified, this matches with any protocol.

                • TCPFlags — (Array<map>)

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

                  • Flagsrequired — (Array<String>)

                    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.

                  • Masks — (Array<String>)

                    The set of flags to consider in the inspection. To inspect all flags in the valid values list, leave this with no setting.

              • Actionsrequired — (Array<String>)

                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”].

            • Priorityrequired — (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 — (Array<map>)

            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.

            • ActionNamerequired — (String)

              The descriptive name of the custom action. You can't change the name of a custom action after you create it.

            • ActionDefinitionrequired — (map)

              The custom action associated with the action name.

              • PublishMetricAction — (map)

                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.

                • Dimensionsrequired — (Array<map>)

                  • Valuerequired — (String)

                    The value to use in the custom metric dimension.

      • StatefulRuleOptions — (map)

        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.

        • RuleOrder — (String)

          Indicates how to manage the order of the rule evaluation for the rule group. By default, Network Firewall leaves the rule evaluation order up to the Suricata rule processing engine. If you set this to STRICT_ORDER, your rules are evaluated in the exact order that they're listed in your Suricata rules string.

          Possible values include:
          • "DEFAULT_ACTION_ORDER"
          • "STRICT_ORDER"
    • 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.
      Possible values include:
      • "STATELESS"
      • "STATEFUL"
    • 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.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

      • 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 — (map)

        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.

        • RuleGroupArnrequired — (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.
        • RuleGroupNamerequired — (String)

          The descriptive name of the rule group. You can't change the name of a rule group after you create it.

        • RuleGroupIdrequired — (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.

          Possible values include:
          • "STATELESS"
          • "STATEFUL"
        • 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.

          Possible values include:
          • "ACTIVE"
          • "DELETING"
        • Tags — (Array<map>)

          The key:value pairs to associate with the resource.

          • Keyrequired — (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.

          • Valuerequired — (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.

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.

updateSubnetChangeProtection(params = {}, callback) ⇒ AWS.Request

Service Reference:

Examples:

Calling the updateSubnetChangeProtection operation

var params = {
  SubnetChangeProtection: true || false, /* required */
  FirewallArn: 'STRING_VALUE',
  FirewallName: 'STRING_VALUE',
  UpdateToken: 'STRING_VALUE'
};
networkfirewall.updateSubnetChangeProtection(params, function(err, data) {
  if (err) console.log(err, err.stack); // an error occurred
  else     console.log(data);           // successful response
});

Parameters:

  • params (Object) (defaults to: {})
    • 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)

      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.

Callback (callback):

  • function(err, data) { ... }

    Called when a response from the service is returned. If a callback is not supplied, you must call AWS.Request.send() on the returned request object to initiate the request.

    Context (this):

    • (AWS.Response)

      the response object containing error, data properties, and the original request object.

    Parameters:

    • err (Error)

      the error object returned from the request. Set to null if the request is successful.

    • data (Object)

      the de-serialized data returned from the request. Set to null if a request error occurs. The data object has the following properties:

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

Returns:

  • (AWS.Request)

    a handle to the operation request for subsequent event callback registration.