interface CfnDnsViewProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Route53GlobalResolver.CfnDnsViewProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsroute53globalresolver#CfnDnsViewProps |
Java | software.amazon.awscdk.services.route53globalresolver.CfnDnsViewProps |
Python | aws_cdk.aws_route53globalresolver.CfnDnsViewProps |
TypeScript | aws-cdk-lib » aws_route53globalresolver » CfnDnsViewProps |
Properties for defining a CfnDnsView.
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 cfnDnsViewProps: route53globalresolver.CfnDnsViewProps = {
globalResolverId: 'globalResolverId',
name: 'name',
// the properties below are optional
clientToken: 'clientToken',
description: 'description',
dnssecValidation: 'dnssecValidation',
ednsClientSubnet: 'ednsClientSubnet',
firewallRulesFailOpen: 'firewallRulesFailOpen',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| global | string | |
| name | string | |
| client | string | |
| description? | string | |
| dnssec | string | |
| edns | string | |
| firewall | string | |
| tags? | Cfn[] |
globalResolverId
Type:
string
name
Type:
string
clientToken?
Type:
string
(optional)
description?
Type:
string
(optional)
dnssecValidation?
Type:
string
(optional)
ednsClientSubnet?
Type:
string
(optional)
firewallRulesFailOpen?
Type:
string
(optional)
tags?
Type:
Cfn[]
(optional)

.NET
Go
Java
Python
TypeScript