CfnFirewallDomainListProps
- class aws_cdk.aws_route53resolver.CfnFirewallDomainListProps(*, domain_file_url=None, domains=None, name=None, tags=None)
Bases:
object
Properties for defining a
CfnFirewallDomainList
.- Parameters:
domain_file_url (
Optional
[str
]) – The fully qualified URL or URI of the file stored in Amazon Simple Storage Service (Amazon S3) that contains the list of domains to import. The file must be in an S3 bucket that’s in the same Region as your DNS Firewall. The file must be a text file and must contain a single domain per line.domains (
Optional
[Sequence
[str
]]) – A list of the domain lists that you have defined.name (
Optional
[str
]) – The name of the domain list.tags (
Optional
[Sequence
[Union
[CfnTag
,Dict
[str
,Any
]]]]) – A list of the tag keys and values that you want to associate with the domain list.
- See:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_route53resolver as route53resolver cfn_firewall_domain_list_props = route53resolver.CfnFirewallDomainListProps( domain_file_url="domainFileUrl", domains=["domains"], name="name", tags=[CfnTag( key="key", value="value" )] )
Attributes
- domain_file_url
The fully qualified URL or URI of the file stored in Amazon Simple Storage Service (Amazon S3) that contains the list of domains to import.
The file must be in an S3 bucket that’s in the same Region as your DNS Firewall. The file must be a text file and must contain a single domain per line.
- domains
A list of the domain lists that you have defined.
- name
The name of the domain list.
- tags
A list of the tag keys and values that you want to associate with the domain list.