CfnFirewallDomainListProps

class aws_cdk.aws_route53globalresolver.CfnFirewallDomainListProps(*, global_resolver_id, name, client_token=None, description=None, domain_file_url=None, domains=None, tags=None)

Bases: object

Properties for defining a CfnFirewallDomainList.

Parameters:
  • global_resolver_id (str)

  • name (str)

  • client_token (Optional[str])

  • description (Optional[str])

  • domain_file_url (Optional[str]) – S3 URL to import domains from.

  • domains (Optional[Sequence[str]]) – An inline list of domains to use for this domain list.

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]])

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53globalresolver-firewalldomainlist.html

ExampleMetadata:

fixture=_generated

Example:

from aws_cdk import CfnTag
# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_route53globalresolver as route53globalresolver

cfn_firewall_domain_list_props = route53globalresolver.CfnFirewallDomainListProps(
    global_resolver_id="globalResolverId",
    name="name",

    # the properties below are optional
    client_token="clientToken",
    description="description",
    domain_file_url="domainFileUrl",
    domains=["domains"],
    tags=[CfnTag(
        key="key",
        value="value"
    )]
)

Attributes

client_token

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53globalresolver-firewalldomainlist.html#cfn-route53globalresolver-firewalldomainlist-clienttoken

Type:

see

description

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53globalresolver-firewalldomainlist.html#cfn-route53globalresolver-firewalldomainlist-description

Type:

see

domain_file_url

S3 URL to import domains from.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53globalresolver-firewalldomainlist.html#cfn-route53globalresolver-firewalldomainlist-domainfileurl

domains

An inline list of domains to use for this domain list.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53globalresolver-firewalldomainlist.html#cfn-route53globalresolver-firewalldomainlist-domains

global_resolver_id

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53globalresolver-firewalldomainlist.html#cfn-route53globalresolver-firewalldomainlist-globalresolverid

Type:

see

name

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53globalresolver-firewalldomainlist.html#cfn-route53globalresolver-firewalldomainlist-name

Type:

see

tags

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53globalresolver-firewalldomainlist.html#cfn-route53globalresolver-firewalldomainlist-tags

Type:

see