Interface CfnSubnet.PrivateDnsNameOptionsOnLaunchProperty

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

@Stability(Stable) public static interface CfnSubnet.PrivateDnsNameOptionsOnLaunchProperty extends software.amazon.jsii.JsiiSerializable
Describes the options for instance hostnames.

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.ec2.*;
 PrivateDnsNameOptionsOnLaunchProperty privateDnsNameOptionsOnLaunchProperty = PrivateDnsNameOptionsOnLaunchProperty.builder()
         .enableResourceNameDnsAaaaRecord(false)
         .enableResourceNameDnsARecord(false)
         .hostnameType("hostnameType")
         .build();
 

See Also: