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

.NET
Go
Java
Python
TypeScript