Interface CfnInstance.PrivateDnsNameOptionsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnInstance.PrivateDnsNameOptionsProperty.Jsii$Proxy
- Enclosing class:
CfnInstance
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. 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.services.ec2.*; PrivateDnsNameOptionsProperty privateDnsNameOptionsProperty = PrivateDnsNameOptionsProperty.builder() .enableResourceNameDnsAaaaRecord(false) .enableResourceNameDnsARecord(false) .hostnameType("hostnameType") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnInstance.PrivateDnsNameOptionsProperty
static final class
An implementation forCfnInstance.PrivateDnsNameOptionsProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default Object
Indicates whether to respond to DNS queries for instance hostnames 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 hostnames to assign to instances in the subnet at launch.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEnableResourceNameDnsAaaaRecord
Indicates whether to respond to DNS queries for instance hostnames with DNS AAAA records.For more information, see Amazon EC2 instance hostname types in the Amazon Elastic Compute Cloud User Guide .
- See Also:
-
getEnableResourceNameDnsARecord
Indicates whether to respond to DNS queries for instance hostnames with DNS A records.For more information, see Amazon EC2 instance hostname types in the Amazon Elastic Compute Cloud User Guide .
- See Also:
-
getHostnameType
The type of hostnames to assign to instances in the subnet at launch.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. For more information, see Amazon EC2 instance hostname types in the Amazon Elastic Compute Cloud User Guide .
- See Also:
-
builder
-