DomainNameReference
- class aws_cdk.interfaces.aws_apigateway.DomainNameReference(*, domain_name, domain_name_arn)
Bases:
objectA 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.interfaces import aws_apigateway as interfaces_aws_apigateway domain_name_reference = interfaces_aws_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.