Skip to content

Create Firewall Policy

networkfirewall_create_firewall_policy R Documentation

Creates the firewall policy for the firewall according to the specifications

Description

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

An Network Firewall firewall policy defines the behavior of a firewall, in a collection of stateless and stateful rule groups and other settings. You can use one firewall policy for multiple firewalls.

Usage

networkfirewall_create_firewall_policy(FirewallPolicyName,
  FirewallPolicy, Description, Tags, DryRun, EncryptionConfiguration)

Arguments

FirewallPolicyName

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

FirewallPolicy

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

Description

A description of the firewall policy.

Tags

The key:value pairs to associate with the resource.

DryRun

Indicates whether you want Network Firewall to just check the validity of the request, rather than run the request.

If set to TRUE, Network Firewall checks whether the request can run successfully, but doesn't actually make the requested changes. The call returns the value that the request would return if you ran it with dry run set to FALSE, but doesn't make additions or changes to your resources. This option allows you to make sure that you have the required permissions to run the request and that your request parameters are valid.

If set to FALSE, Network Firewall makes the requested changes to your resources.

EncryptionConfiguration

A complex type that contains settings for encryption of your firewall policy resources.

Value

A list with the following syntax:

list(
  UpdateToken = "string",
  FirewallPolicyResponse = list(
    FirewallPolicyName = "string",
    FirewallPolicyArn = "string",
    FirewallPolicyId = "string",
    Description = "string",
    FirewallPolicyStatus = "ACTIVE"|"DELETING"|"ERROR",
    Tags = list(
      list(
        Key = "string",
        Value = "string"
      )
    ),
    ConsumedStatelessRuleCapacity = 123,
    ConsumedStatefulRuleCapacity = 123,
    NumberOfAssociations = 123,
    EncryptionConfiguration = list(
      KeyId = "string",
      Type = "CUSTOMER_KMS"|"AWS_OWNED_KMS_KEY"
    ),
    LastModifiedTime = as.POSIXct(
      "2015-01-01"
    )
  )
)

Request syntax

svc$create_firewall_policy(
  FirewallPolicyName = "string",
  FirewallPolicy = list(
    StatelessRuleGroupReferences = list(
      list(
        ResourceArn = "string",
        Priority = 123
      )
    ),
    StatelessDefaultActions = list(
      "string"
    ),
    StatelessFragmentDefaultActions = list(
      "string"
    ),
    StatelessCustomActions = list(
      list(
        ActionName = "string",
        ActionDefinition = list(
          PublishMetricAction = list(
            Dimensions = list(
              list(
                Value = "string"
              )
            )
          )
        )
      )
    ),
    StatefulRuleGroupReferences = list(
      list(
        ResourceArn = "string",
        Priority = 123,
        Override = list(
          Action = "DROP_TO_ALERT"
        )
      )
    ),
    StatefulDefaultActions = list(
      "string"
    ),
    StatefulEngineOptions = list(
      RuleOrder = "DEFAULT_ACTION_ORDER"|"STRICT_ORDER",
      StreamExceptionPolicy = "DROP"|"CONTINUE"|"REJECT"
    ),
    TLSInspectionConfigurationArn = "string",
    PolicyVariables = list(
      RuleVariables = list(
        list(
          Definition = list(
            "string"
          )
        )
      )
    )
  ),
  Description = "string",
  Tags = list(
    list(
      Key = "string",
      Value = "string"
    )
  ),
  DryRun = TRUE|FALSE,
  EncryptionConfiguration = list(
    KeyId = "string",
    Type = "CUSTOMER_KMS"|"AWS_OWNED_KMS_KEY"
  )
)