Interface CfnPublicDnsNamespaceProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnPublicDnsNamespaceProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.96.0 (build 921e240)",
date="2024-04-10T22:22:35.541Z")
@Stability(Stable)
public interface CfnPublicDnsNamespaceProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnPublicDnsNamespace
.
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.servicediscovery.*; CfnPublicDnsNamespaceProps cfnPublicDnsNamespaceProps = CfnPublicDnsNamespaceProps.builder() .name("name") // the properties below are optional .description("description") .properties(PropertiesProperty.builder() .dnsProperties(PublicDnsPropertiesMutableProperty.builder() .soa(SOAProperty.builder() .ttl(123) .build()) .build()) .build()) .tags(List.of(CfnTag.builder() .key("key") .value("value") .build())) .build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnPublicDnsNamespaceProps
static final class
An implementation forCfnPublicDnsNamespaceProps
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
The name that you want to assign to this namespace.Do not include sensitive information in the name. The name is publicly available using DNS queries.
- See Also:
-
getDescription
A description for the namespace.- See Also:
-
getProperties
Properties for the public DNS namespace.- See Also:
-
getTags
The tags for the namespace.Each tag consists of a key and an optional value, both of which you define. Tag keys can have a maximum character length of 128 characters, and tag values can have a maximum length of 256 characters.
- See Also:
-
builder
- Returns:
- a
CfnPublicDnsNamespaceProps.Builder
ofCfnPublicDnsNamespaceProps
-