CfnDomainNameAccessAssociationProps

class aws_cdk.aws_apigateway.CfnDomainNameAccessAssociationProps(*, access_association_source, access_association_source_type, domain_name_arn, tags=None)

Bases: object

Properties for defining a CfnDomainNameAccessAssociation.

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

  • access_association_source_type (str) – The type of the domain name access association source. Only VPCE is currently supported.

  • domain_name_arn (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 import aws_apigateway as apigateway

cfn_domain_name_access_association_props = apigateway.CfnDomainNameAccessAssociationProps(
    access_association_source="accessAssociationSource",
    access_association_source_type="accessAssociationSourceType",
    domain_name_arn="domainNameArn",

    # the properties below are optional
    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