Interface CfnLaunchTemplatePropsMixin.PrivateDnsNameOptionsProperty

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

@Stability(Stable) public static interface CfnLaunchTemplatePropsMixin.PrivateDnsNameOptionsProperty extends software.amazon.jsii.JsiiSerializable
The hostname type for EC2 instances launched into this subnet and how DNS A and AAAA record queries should be handled.

For more information, see Amazon EC2 instance hostname types in the Amazon Elastic Compute Cloud User Guide .

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

See Also: