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

.NET
Go
Java
Python
TypeScript