Skip to content

Create Firewall Domain List

route53resolver_create_firewall_domain_list R Documentation

Creates an empty firewall domain list for use in DNS Firewall rules

Description

Creates an empty firewall domain list for use in DNS Firewall rules. You can populate the domains for the new list with a file, using import_firewall_domains, or with domain strings, using update_firewall_domains.

Usage

route53resolver_create_firewall_domain_list(CreatorRequestId, Name,
  Tags)

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. CreatorRequestId can be any unique string, for example, a date/time stamp.

Name

[required] A name that lets you identify the domain list to manage and use it.

Tags

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

Value

A list with the following syntax:

list(
  FirewallDomainList = list(
    Id = "string",
    Arn = "string",
    Name = "string",
    DomainCount = 123,
    Status = "COMPLETE"|"COMPLETE_IMPORT_FAILED"|"IMPORTING"|"DELETING"|"UPDATING",
    StatusMessage = "string",
    ManagedOwnerName = "string",
    CreatorRequestId = "string",
    CreationTime = "string",
    ModificationTime = "string"
  )
)

Request syntax

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