interface CfnGlobalResolverMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Route53GlobalResolver.CfnGlobalResolverMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsroute53globalresolver#CfnGlobalResolverMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.route53globalresolver.CfnGlobalResolverMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_route53globalresolver.CfnGlobalResolverMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_route53globalresolver » CfnGlobalResolverMixinProps |
Properties for CfnGlobalResolverPropsMixin.
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/cfn-property-mixins';
const cfnGlobalResolverMixinProps: route53globalresolver.CfnGlobalResolverMixinProps = {
clientToken: 'clientToken',
description: 'description',
ipAddressType: 'ipAddressType',
name: 'name',
observabilityRegion: 'observabilityRegion',
regions: ['regions'],
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| client | string | |
| description? | string | |
| ip | string | |
| name? | string | |
| observability | string | |
| regions? | string[] | |
| tags? | Cfn[] |
clientToken?
Type:
string
(optional)
description?
Type:
string
(optional)
ipAddressType?
Type:
string
(optional)
name?
Type:
string
(optional)
observabilityRegion?
Type:
string
(optional)
regions?
Type:
string[]
(optional)
tags?
Type:
Cfn[]
(optional)

.NET
Go
Java
Python
TypeScript