Struct cfn::aws::ec2::DHCPOptionsProperties [] [src]

pub struct DHCPOptionsProperties {
    pub domain_name: Option<Value<String>>,
    pub domain_name_servers: Option<ValueList<String>>,
    pub netbios_name_servers: Option<ValueList<String>>,
    pub netbios_node_type: Option<Value<u32>>,
    pub ntp_servers: Option<ValueList<String>>,
    pub tags: Option<ValueList<Tag>>,
}

Properties for the DHCPOptions resource.

Fields

Property DomainName.

Update type: Immutable. AWS CloudFormation replaces the resource when you change this property.

Property DomainNameServers.

Update type: Immutable. AWS CloudFormation replaces the resource when you change this property.

Property NetbiosNameServers.

Update type: Immutable. AWS CloudFormation replaces the resource when you change this property.

Property NetbiosNodeType.

Update type: Immutable. AWS CloudFormation replaces the resource when you change this property.

Property NtpServers.

Update type: Immutable. AWS CloudFormation replaces the resource when you change this property.

Property Tags.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Trait Implementations

impl Debug for DHCPOptionsProperties
[src]

[src]

Formats the value using the given formatter. Read more

impl Default for DHCPOptionsProperties
[src]

[src]

Returns the "default value" for a type. Read more

impl Serialize for DHCPOptionsProperties
[src]

[src]

Serialize this value into the given Serde serializer. Read more

impl<'de> Deserialize<'de> for DHCPOptionsProperties
[src]

[src]

Deserialize this value from the given Serde deserializer. Read more

impl From<DHCPOptionsProperties> for DHCPOptions
[src]

[src]

Performs the conversion.

Auto Trait Implementations