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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnSubnet.PrivateDnsNameOptionsOnLaunchProperty
static final class
An implementation forCfnSubnet.PrivateDnsNameOptionsOnLaunchProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default Object
Indicates whether to respond to DNS queries for instance hostname with DNS AAAA records.default Object
Indicates whether to respond to DNS queries for instance hostnames with DNS A records.default String
The type of hostname for EC2 instances.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEnableResourceNameDnsAaaaRecord
Indicates whether to respond to DNS queries for instance hostname with DNS AAAA records. -
getEnableResourceNameDnsARecord
Indicates whether to respond to DNS queries for instance hostnames with DNS A records. -
getHostnameType
The type of hostname for EC2 instances.For IPv4 only subnets, an instance DNS name must be based on the instance IPv4 address. For IPv6 only subnets, an instance DNS name must be based on the instance ID. For dual-stack subnets, you can specify whether DNS names use the instance IPv4 address or the instance ID.
-
builder
-