Show / Hide Table of Contents

Class VpcDhcpOptionsArgs

Inheritance
System.Object
InputArgs
ResourceArgs
VpcDhcpOptionsArgs
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Aws.Ec2
Assembly: Pulumi.Aws.dll
Syntax
public sealed class VpcDhcpOptionsArgs : ResourceArgs

Constructors

View Source

VpcDhcpOptionsArgs()

Declaration
public VpcDhcpOptionsArgs()

Properties

View Source

DomainName

the suffix domain name to use by default when resolving non Fully Qualified Domain Names. In other words, this is what ends up being the search value in the /etc/resolv.conf file.

Declaration
public Input<string> DomainName { get; set; }
Property Value
Type Description
Input<System.String>
View Source

DomainNameServers

List of name servers to configure in /etc/resolv.conf. If you want to use the default AWS nameservers you should set this to AmazonProvidedDNS.

Declaration
public InputList<string> DomainNameServers { get; set; }
Property Value
Type Description
InputList<System.String>
View Source

NetbiosNameServers

List of NETBIOS name servers.

Declaration
public InputList<string> NetbiosNameServers { get; set; }
Property Value
Type Description
InputList<System.String>
View Source

NetbiosNodeType

The NetBIOS node type (1, 2, 4, or 8). AWS recommends to specify 2 since broadcast and multicast are not supported in their network. For more information about these node types, see RFC 2132.

Declaration
public Input<string> NetbiosNodeType { get; set; }
Property Value
Type Description
Input<System.String>
View Source

NtpServers

List of NTP servers to configure.

Declaration
public InputList<string> NtpServers { get; set; }
Property Value
Type Description
InputList<System.String>
View Source

Tags

A map of tags to assign to the resource.

Declaration
public InputMap<object> Tags { get; set; }
Property Value
Type Description
InputMap<System.Object>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.