DomainNameAttributes

class aws_cdk.aws_apigatewayv2.DomainNameAttributes(*, name, regional_domain_name, regional_hosted_zone_id)

Bases: object

custom domain name attributes.

Parameters:
  • name (str) – domain name string.

  • regional_domain_name (str) – The domain name associated with the regional endpoint for this custom domain name.

  • regional_hosted_zone_id (str) – The region-specific Amazon Route 53 Hosted Zone ID of the regional endpoint.

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_apigatewayv2 as apigatewayv2

domain_name_attributes = apigatewayv2.DomainNameAttributes(
    name="name",
    regional_domain_name="regionalDomainName",
    regional_hosted_zone_id="regionalHostedZoneId"
)

Attributes

name

domain name string.

regional_domain_name

The domain name associated with the regional endpoint for this custom domain name.

regional_hosted_zone_id

The region-specific Amazon Route 53 Hosted Zone ID of the regional endpoint.