interface CfnFirewallDomainListProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Route53GlobalResolver.CfnFirewallDomainListProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsroute53globalresolver#CfnFirewallDomainListProps |
Java | software.amazon.awscdk.services.route53globalresolver.CfnFirewallDomainListProps |
Python | aws_cdk.aws_route53globalresolver.CfnFirewallDomainListProps |
TypeScript | aws-cdk-lib » aws_route53globalresolver » 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_route53globalresolver as route53globalresolver } from 'aws-cdk-lib';
const cfnFirewallDomainListProps: route53globalresolver.CfnFirewallDomainListProps = {
globalResolverId: 'globalResolverId',
name: 'name',
// the properties below are optional
clientToken: 'clientToken',
description: 'description',
domainFileUrl: 'domainFileUrl',
domains: ['domains'],
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| global | string | |
| name | string | |
| client | string | |
| description? | string | |
| domain | string | S3 URL to import domains from. |
| domains? | string[] | An inline list of domains to use for this domain list. |
| tags? | Cfn[] |
globalResolverId
Type:
string
name
Type:
string
clientToken?
Type:
string
(optional)
description?
Type:
string
(optional)
domainFileUrl?
Type:
string
(optional)
S3 URL to import domains from.
domains?
Type:
string[]
(optional)
An inline list of domains to use for this domain list.
tags?
Type:
Cfn[]
(optional)

.NET
Go
Java
Python
TypeScript