DomainNameReference
- class aws_cdk.aws_apigateway.DomainNameReference(*, domain_name, domain_name_arn)
- Bases: - object- A reference to a DomainName resource. - Parameters:
- domain_name ( - str) – The DomainName of the DomainName resource.
- domain_name_arn ( - str) – The ARN of the DomainName resource.
 
- 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 domain_name_reference = apigateway.DomainNameReference( domain_name="domainName", domain_name_arn="domainNameArn" ) - Attributes - domain_name
- The DomainName of the DomainName resource. 
 - domain_name_arn
- The ARN of the DomainName resource.