aws-cdk-lib.aws_route53resolver.CfnFirewallDomainListProps

interface CfnFirewallDomainListProps

LanguageType name
.NETAmazon.CDK.AWS.Route53Resolver.CfnFirewallDomainListProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsroute53resolver#CfnFirewallDomainListProps
Javasoftware.amazon.awscdk.services.route53resolver.CfnFirewallDomainListProps
Pythonaws_cdk.aws_route53resolver.CfnFirewallDomainListProps
TypeScript aws-cdk-lib » aws_route53resolver » CfnFirewallDomainListProps

Properties for defining a CfnFirewallDomainList.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_route53resolver as route53resolver } from 'aws-cdk-lib';
const cfnFirewallDomainListProps: route53resolver.CfnFirewallDomainListProps = {
  domainFileUrl: 'domainFileUrl',
  domains: ['domains'],
  name: 'name',
  tags: [{
    key: 'key',
    value: 'value',
  }],
};

Properties

NameTypeDescription
domainFileUrl?stringThe fully qualified URL or URI of the file stored in Amazon Simple Storage Service (Amazon S3) that contains the list of domains to import.
domains?string[]A list of the domain lists that you have defined.
name?stringThe name of the domain list.
tags?CfnTag[]A list of the tag keys and values that you want to associate with the domain list.

domainFileUrl?

Type: string (optional)

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?

Type: string[] (optional)

A list of the domain lists that you have defined.


name?

Type: string (optional)

The name of the domain list.


tags?

Type: CfnTag[] (optional)

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