Create Firewall Rule
route53resolver_create_firewall_rule | R Documentation |
Creates a single DNS Firewall rule in the specified rule group, using the specified domain list¶
Description¶
Creates a single DNS Firewall rule in the specified rule group, using the specified domain list.
Usage¶
route53resolver_create_firewall_rule(CreatorRequestId,
FirewallRuleGroupId, FirewallDomainListId, Priority, Action,
BlockResponse, BlockOverrideDomain, BlockOverrideDnsType,
BlockOverrideTtl, Name, FirewallDomainRedirectionAction, Qtype,
DnsThreatProtection, ConfidenceThreshold)
Arguments¶
CreatorRequestId |
[required] A unique string that identifies the request and that
allows you to retry failed requests without the risk of running the
operation twice. |
FirewallRuleGroupId |
[required] The unique identifier of the firewall rule group where you want to create the rule. |
FirewallDomainListId |
The ID of the domain list that you want to use in the rule. Can't
be used together with |
Priority |
[required] The setting that determines the processing order of the rule in the rule group. DNS Firewall processes the rules in a rule group by order of priority, starting from the lowest setting. You must specify a unique priority for each rule in a rule group. To make it easier to insert rules later, leave space between the numbers, for example, use 100, 200, and so on. You can change the priority setting for the rules in a rule group at any time. |
Action |
[required] The action that DNS Firewall should take on a DNS query when it matches one of the domains in the rule's domain list, or a threat in a DNS Firewall Advanced rule:
|
BlockResponse |
The way that you want DNS Firewall to block the request, used
with the rule action setting
This setting is required if the rule action setting is
|
BlockOverrideDomain |
The custom DNS record to send back in response to the query. Used
for the rule action This setting is required if the |
BlockOverrideDnsType |
The DNS record's type. This determines the format of the record
value that you provided in This setting is required if the |
BlockOverrideTtl |
The recommended amount of time, in seconds, for the DNS resolver
or web browser to cache the provided override record. Used for the rule
action This setting is required if the |
Name |
[required] A name that lets you identify the rule in the rule group. |
FirewallDomainRedirectionAction |
How you want the the rule to evaluate DNS redirection in the DNS redirection chain, such as CNAME or DNAME.
|
Qtype |
The DNS query type you want the rule to evaluate. Allowed values are;
|
DnsThreatProtection |
Use to create a DNS Firewall Advanced rule. |
ConfidenceThreshold |
The confidence threshold for DNS Firewall Advanced. You must provide this value when you create a DNS Firewall Advanced rule. The confidence level values mean:
|
Value¶
A list with the following syntax:
list(
FirewallRule = list(
FirewallRuleGroupId = "string",
FirewallDomainListId = "string",
FirewallThreatProtectionId = "string",
Name = "string",
Priority = 123,
Action = "ALLOW"|"BLOCK"|"ALERT",
BlockResponse = "NODATA"|"NXDOMAIN"|"OVERRIDE",
BlockOverrideDomain = "string",
BlockOverrideDnsType = "CNAME",
BlockOverrideTtl = 123,
CreatorRequestId = "string",
CreationTime = "string",
ModificationTime = "string",
FirewallDomainRedirectionAction = "INSPECT_REDIRECTION_DOMAIN"|"TRUST_REDIRECTION_DOMAIN",
Qtype = "string",
DnsThreatProtection = "DGA"|"DNS_TUNNELING",
ConfidenceThreshold = "LOW"|"MEDIUM"|"HIGH"
)
)
Request syntax¶
svc$create_firewall_rule(
CreatorRequestId = "string",
FirewallRuleGroupId = "string",
FirewallDomainListId = "string",
Priority = 123,
Action = "ALLOW"|"BLOCK"|"ALERT",
BlockResponse = "NODATA"|"NXDOMAIN"|"OVERRIDE",
BlockOverrideDomain = "string",
BlockOverrideDnsType = "CNAME",
BlockOverrideTtl = 123,
Name = "string",
FirewallDomainRedirectionAction = "INSPECT_REDIRECTION_DOMAIN"|"TRUST_REDIRECTION_DOMAIN",
Qtype = "string",
DnsThreatProtection = "DGA"|"DNS_TUNNELING",
ConfidenceThreshold = "LOW"|"MEDIUM"|"HIGH"
)