Interface CfnContainer.PublicDomainNameProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnContainer.PublicDomainNameProperty.Jsii$Proxy
Enclosing class:
CfnContainer

@Stability(Stable) public static interface CfnContainer.PublicDomainNameProperty extends software.amazon.jsii.JsiiSerializable
`PublicDomainName` is a property of the [AWS::Lightsail::Container](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lightsail-container.html) resource. It describes the public domain names to use with a container service, such as `example.com` and `www.example.com` . It also describes the certificates to use with a container service.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.lightsail.*;
 PublicDomainNameProperty publicDomainNameProperty = PublicDomainNameProperty.builder()
         .certificateName("certificateName")
         .domainNames(List.of("domainNames"))
         .build();