CfnDomainNameAccessAssociationMixinProps
- class aws_cdk.mixins_preview.aws_apigateway.mixins.CfnDomainNameAccessAssociationMixinProps(*, access_association_source=None, access_association_source_type=None, domain_name_arn=None, tags=None)
Bases:
objectProperties for CfnDomainNameAccessAssociationPropsMixin.
- Parameters:
access_association_source (
Optional[str]) – The identifier of the domain name access association source. For aVPCE, the value is the VPC endpoint ID.access_association_source_type (
Optional[str]) – The type of the domain name access association source. OnlyVPCEis currently supported.domain_name_arn (
Optional[str]) – The ARN of the domain name.tags (
Optional[Sequence[Union[CfnTag,Dict[str,Any]]]]) – The collection of tags. Each tag element is associated with a given resource.
- See:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.mixins_preview.aws_apigateway import mixins as apigateway_mixins cfn_domain_name_access_association_mixin_props = apigateway_mixins.CfnDomainNameAccessAssociationMixinProps( access_association_source="accessAssociationSource", access_association_source_type="accessAssociationSourceType", domain_name_arn="domainNameArn", tags=[CfnTag( key="key", value="value" )] )
Attributes
- access_association_source
The identifier of the domain name access association source.
For a
VPCE, the value is the VPC endpoint ID.
- access_association_source_type
The type of the domain name access association source.
Only
VPCEis currently supported.
- domain_name_arn
The ARN of the domain name.
- tags
The collection of tags.
Each tag element is associated with a given resource.