interface CfnDomainNameAccessAssociationProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.APIGateway.CfnDomainNameAccessAssociationProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsapigateway#CfnDomainNameAccessAssociationProps |
Java | software.amazon.awscdk.services.apigateway.CfnDomainNameAccessAssociationProps |
Python | aws_cdk.aws_apigateway.CfnDomainNameAccessAssociationProps |
TypeScript | aws-cdk-lib » aws_apigateway » CfnDomainNameAccessAssociationProps |
Properties for defining a CfnDomainNameAccessAssociation.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_apigateway as apigateway } from 'aws-cdk-lib';
const cfnDomainNameAccessAssociationProps: apigateway.CfnDomainNameAccessAssociationProps = {
accessAssociationSource: 'accessAssociationSource',
accessAssociationSourceType: 'accessAssociationSourceType',
domainNameArn: 'domainNameArn',
// the properties below are optional
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| access | string | The identifier of the domain name access association source. |
| access | string | The type of the domain name access association source. |
| domain | string | The ARN of the domain name. |
| tags? | Cfn[] | The collection of tags. |
accessAssociationSource
Type:
string
The identifier of the domain name access association source.
For a VPCE , the value is the VPC endpoint ID.
accessAssociationSourceType
Type:
string
The type of the domain name access association source.
Only VPCE is currently supported.
domainNameArn
Type:
string
The ARN of the domain name.
tags?
Type:
Cfn[]
(optional)
The collection of tags.
Each tag element is associated with a given resource.

.NET
Go
Java
Python
TypeScript