Interface CfnPublicDnsNamespaceMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnPublicDnsNamespaceMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.121.0 (build d7af9b9)",
date="2025-12-18T18:20:32.276Z")
@Stability(Stable)
public interface CfnPublicDnsNamespaceMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnPublicDnsNamespacePropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.mixins.preview.services.servicediscovery.mixins.*;
CfnPublicDnsNamespaceMixinProps cfnPublicDnsNamespaceMixinProps = CfnPublicDnsNamespaceMixinProps.builder()
.description("description")
.name("name")
.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 classA builder forCfnPublicDnsNamespaceMixinPropsstatic final classAn implementation forCfnPublicDnsNamespaceMixinProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDescription
A description for the namespace.- See Also:
-
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:
-
getProperties
Properties for the public DNS namespace.Returns union: either
IResolvableorCfnPublicDnsNamespacePropsMixin.PropertiesProperty- 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
-