Class CfnLaunchTemplate.PrivateDnsNameOptionsProperty
The hostname type for EC2 instances launched into this subnet and how DNS A and AAAA record queries should be handled.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.EC2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnLaunchTemplate.PrivateDnsNameOptionsProperty : CfnLaunchTemplate.IPrivateDnsNameOptionsProperty
Syntax (vb)
Public Class CfnLaunchTemplate.PrivateDnsNameOptionsProperty Implements CfnLaunchTemplate.IPrivateDnsNameOptionsProperty
Remarks
For more information, see Amazon EC2 instance hostname types in the Amazon Elastic Compute Cloud User Guide .
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.EC2;
var privateDnsNameOptionsProperty = new PrivateDnsNameOptionsProperty {
EnableResourceNameDnsAaaaRecord = false,
EnableResourceNameDnsARecord = false,
HostnameType = "hostnameType"
};
Synopsis
Constructors
| PrivateDnsNameOptionsProperty() | The hostname type for EC2 instances launched into this subnet and how DNS A and AAAA record queries should be handled. |
Properties
| EnableResourceNameDnsARecord | Indicates whether to respond to DNS queries for instance hostnames with DNS A records. |
| EnableResourceNameDnsAaaaRecord | Indicates whether to respond to DNS queries for instance hostnames with DNS AAAA records. |
| HostnameType | The type of hostname for EC2 instances. |
Constructors
PrivateDnsNameOptionsProperty()
The hostname type for EC2 instances launched into this subnet and how DNS A and AAAA record queries should be handled.
public PrivateDnsNameOptionsProperty()
Remarks
For more information, see Amazon EC2 instance hostname types in the Amazon Elastic Compute Cloud User Guide .
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.EC2;
var privateDnsNameOptionsProperty = new PrivateDnsNameOptionsProperty {
EnableResourceNameDnsAaaaRecord = false,
EnableResourceNameDnsARecord = false,
HostnameType = "hostnameType"
};
Properties
EnableResourceNameDnsARecord
Indicates whether to respond to DNS queries for instance hostnames with DNS A records.
public object? EnableResourceNameDnsARecord { get; set; }
Property Value
Remarks
EnableResourceNameDnsAaaaRecord
Indicates whether to respond to DNS queries for instance hostnames with DNS AAAA records.
public object? EnableResourceNameDnsAaaaRecord { get; set; }
Property Value
Remarks
HostnameType
The type of hostname for EC2 instances.
public string? HostnameType { get; set; }
Property Value
Remarks
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 .