interface CfnGlobalResolverProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Route53GlobalResolver.CfnGlobalResolverProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsroute53globalresolver#CfnGlobalResolverProps |
Java | software.amazon.awscdk.services.route53globalresolver.CfnGlobalResolverProps |
Python | aws_cdk.aws_route53globalresolver.CfnGlobalResolverProps |
TypeScript | aws-cdk-lib » aws_route53globalresolver » CfnGlobalResolverProps |
Properties for defining a CfnGlobalResolver.
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 cfnGlobalResolverProps: route53globalresolver.CfnGlobalResolverProps = {
name: 'name',
regions: ['regions'],
// the properties below are optional
clientToken: 'clientToken',
description: 'description',
ipAddressType: 'ipAddressType',
observabilityRegion: 'observabilityRegion',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| name | string | |
| regions | string[] | |
| client | string | |
| description? | string | |
| ip | string | |
| observability | string | |
| tags? | Cfn[] |
name
Type:
string
regions
Type:
string[]
clientToken?
Type:
string
(optional)
description?
Type:
string
(optional)
ipAddressType?
Type:
string
(optional)
observabilityRegion?
Type:
string
(optional)
tags?
Type:
Cfn[]
(optional)

.NET
Go
Java
Python
TypeScript