@Stability(value=Stable)
public static interface CfnLaunchTemplate.PrivateDnsNameOptionsProperty
extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnLaunchTemplate.PrivateDnsNameOptionsProperty.Builder
A builder for
CfnLaunchTemplate.PrivateDnsNameOptionsProperty |
static class |
CfnLaunchTemplate.PrivateDnsNameOptionsProperty.Jsii$Proxy
An implementation for
CfnLaunchTemplate.PrivateDnsNameOptionsProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnLaunchTemplate.PrivateDnsNameOptionsProperty.Builder |
builder() |
default Object |
getEnableResourceNameDnsAaaaRecord()
Indicates whether to respond to DNS queries for instance hostnames with DNS AAAA records.
|
default Object |
getEnableResourceNameDnsARecord()
Indicates whether to respond to DNS queries for instance hostnames with DNS A records.
|
default String |
getHostnameType()
The type of hostname for EC2 instances.
|
@Stability(value=Stable) @Nullable default Object getEnableResourceNameDnsAaaaRecord()
@Stability(value=Stable) @Nullable default Object getEnableResourceNameDnsARecord()
@Stability(value=Stable) @Nullable default String getHostnameType()
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 .
@Stability(value=Stable) static CfnLaunchTemplate.PrivateDnsNameOptionsProperty.Builder builder()
Copyright © 2022. All rights reserved.