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 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();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnContainer.PublicDomainNameProperty
static final class
An implementation forCfnContainer.PublicDomainNameProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCertificateName
The name of the certificate for the public domains.- See Also:
-
getDomainNames
The public domain names to use with the container service.- See Also:
-
builder
-