interface CfnDomainNameAccessAssociationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ApiGateway.Mixins.CfnDomainNameAccessAssociationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsapigateway/mixins#CfnDomainNameAccessAssociationMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.apigateway.mixins.CfnDomainNameAccessAssociationMixinProps |
Python | aws_cdk.mixins_preview.aws_apigateway.mixins.CfnDomainNameAccessAssociationMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_apigateway » mixins » CfnDomainNameAccessAssociationMixinProps |
Properties for CfnDomainNameAccessAssociationPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as apigateway_mixins } from '@aws-cdk/mixins-preview/aws-apigateway';
const cfnDomainNameAccessAssociationMixinProps: apigateway_mixins.CfnDomainNameAccessAssociationMixinProps = {
accessAssociationSource: 'accessAssociationSource',
accessAssociationSourceType: 'accessAssociationSourceType',
domainNameArn: 'domainNameArn',
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
(optional)
The identifier of the domain name access association source.
For a VPCE , the value is the VPC endpoint ID.
accessAssociationSourceType?
Type:
string
(optional)
The type of the domain name access association source.
Only VPCE is currently supported.
domainNameArn?
Type:
string
(optional)
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