Show / Hide Table of Contents

Class CfnSubnet.PrivateDnsNameOptionsOnLaunchProperty

Specifies the options for instance hostnames.

Inheritance
object
CfnSubnet.PrivateDnsNameOptionsOnLaunchProperty
Implements
CfnSubnet.IPrivateDnsNameOptionsOnLaunchProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.EC2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnSubnet.PrivateDnsNameOptionsOnLaunchProperty : CfnSubnet.IPrivateDnsNameOptionsOnLaunchProperty
Syntax (vb)
Public Class CfnSubnet.PrivateDnsNameOptionsOnLaunchProperty Implements CfnSubnet.IPrivateDnsNameOptionsOnLaunchProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-subnet-privatednsnameoptionsonlaunch.html

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 privateDnsNameOptionsOnLaunchProperty = new PrivateDnsNameOptionsOnLaunchProperty {
                 EnableResourceNameDnsAaaaRecord = false,
                 EnableResourceNameDnsARecord = false,
                 HostnameType = "hostnameType"
             };

Synopsis

Constructors

PrivateDnsNameOptionsOnLaunchProperty()

Specifies the options for instance hostnames.

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 hostname with DNS AAAA records.

HostnameType

The type of hostname for EC2 instances.

Constructors

PrivateDnsNameOptionsOnLaunchProperty()

Specifies the options for instance hostnames.

public PrivateDnsNameOptionsOnLaunchProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-subnet-privatednsnameoptionsonlaunch.html

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 privateDnsNameOptionsOnLaunchProperty = new PrivateDnsNameOptionsOnLaunchProperty {
                 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

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-subnet-privatednsnameoptionsonlaunch.html#cfn-ec2-subnet-privatednsnameoptionsonlaunch-enableresourcenamednsarecord

Type union: either bool or IResolvable

EnableResourceNameDnsAaaaRecord

Indicates whether to respond to DNS queries for instance hostname with DNS AAAA records.

public object? EnableResourceNameDnsAaaaRecord { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-subnet-privatednsnameoptionsonlaunch.html#cfn-ec2-subnet-privatednsnameoptionsonlaunch-enableresourcenamednsaaaarecord

Type union: either bool or IResolvable

HostnameType

The type of hostname for EC2 instances.

public string? HostnameType { get; set; }
Property Value

string

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.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-subnet-privatednsnameoptionsonlaunch.html#cfn-ec2-subnet-privatednsnameoptionsonlaunch-hostnametype

Implements

CfnSubnet.IPrivateDnsNameOptionsOnLaunchProperty
Back to top Generated by DocFX