Interface CfnPrivateDnsNamespace.PropertiesProperty

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

@Stability(Stable) public static interface CfnPrivateDnsNamespace.PropertiesProperty extends software.amazon.jsii.JsiiSerializable
Properties for the private DNS namespace.

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.*;
 PropertiesProperty propertiesProperty = PropertiesProperty.builder()
         .dnsProperties(PrivateDnsPropertiesMutableProperty.builder()
                 .soa(SOAProperty.builder()
                         .ttl(123)
                         .build())
                 .build())
         .build();