Skip to content

Create Firewall Rule Group

route53resolver_create_firewall_rule_group R Documentation

Creates an empty DNS Firewall rule group for filtering DNS network traffic in a VPC

Description

Creates an empty DNS Firewall rule group for filtering DNS network traffic in a VPC. You can add rules to the new rule group by calling create_firewall_rule.

Usage

route53resolver_create_firewall_rule_group(CreatorRequestId, Name, Tags)

Arguments

CreatorRequestId

[required] A unique string defined by you to identify the request. This allows you to retry failed requests without the risk of running the operation twice. This can be any unique string, for example, a timestamp.

Name

[required] A name that lets you identify the rule group, to manage and use it.

Tags

A list of the tag keys and values that you want to associate with the rule group.

Value

A list with the following syntax:

list(
  FirewallRuleGroup = list(
    Id = "string",
    Arn = "string",
    Name = "string",
    RuleCount = 123,
    Status = "COMPLETE"|"DELETING"|"UPDATING",
    StatusMessage = "string",
    OwnerId = "string",
    CreatorRequestId = "string",
    ShareStatus = "NOT_SHARED"|"SHARED_WITH_ME"|"SHARED_BY_ME",
    CreationTime = "string",
    ModificationTime = "string"
  )
)

Request syntax

svc$create_firewall_rule_group(
  CreatorRequestId = "string",
  Name = "string",
  Tags = list(
    list(
      Key = "string",
      Value = "string"
    )
  )
)