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: object

Properties for CfnDomainNameAccessAssociationPropsMixin.

Parameters:
  • access_association_source (Optional[str]) – The identifier of the domain name access association source. For a VPCE , the value is the VPC endpoint ID.

  • access_association_source_type (Optional[str]) – The type of the domain name access association source. Only VPCE is 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:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainnameaccessassociation.html

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.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainnameaccessassociation.html#cfn-apigateway-domainnameaccessassociation-accessassociationsource

access_association_source_type

The type of the domain name access association source.

Only VPCE is currently supported.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainnameaccessassociation.html#cfn-apigateway-domainnameaccessassociation-accessassociationsourcetype

domain_name_arn

The ARN of the domain name.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainnameaccessassociation.html#cfn-apigateway-domainnameaccessassociation-domainnamearn

tags

The collection of tags.

Each tag element is associated with a given resource.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainnameaccessassociation.html#cfn-apigateway-domainnameaccessassociation-tags