interface CfnFirewallDomainListMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Route53Resolver.Mixins.CfnFirewallDomainListMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsroute53resolver/mixins#CfnFirewallDomainListMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.route53resolver.mixins.CfnFirewallDomainListMixinProps |
Python | aws_cdk.mixins_preview.aws_route53resolver.mixins.CfnFirewallDomainListMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_route53resolver » mixins » CfnFirewallDomainListMixinProps |
Properties for CfnFirewallDomainListPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as route53resolver_mixins } from '@aws-cdk/mixins-preview/aws-route53resolver';
const cfnFirewallDomainListMixinProps: route53resolver_mixins.CfnFirewallDomainListMixinProps = {
domainFileUrl: 'domainFileUrl',
domains: ['domains'],
name: 'name',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| domain | string | 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. |
| domains? | string[] | A list of the domain lists that you have defined. |
| name? | string | The name of the domain list. |
| tags? | Cfn[] | 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:
Cfn[]
(optional)
A list of the tag keys and values that you want to associate with the domain list.

.NET
Go
Java
Python
TypeScript