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

pub struct HostProperties {
    pub auto_placement: Option<Value<String>>,
    pub availability_zone: Value<String>,
    pub instance_type: Value<String>,
}

Properties for the Host resource.

Fields

Property AutoPlacement.

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

Property AvailabilityZone.

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

Property InstanceType.

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

Trait Implementations

impl Debug for HostProperties
[src]

[src]

Formats the value using the given formatter. Read more

impl Serialize for HostProperties
[src]

[src]

Serialize this value into the given Serde serializer. Read more

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

[src]

Deserialize this value from the given Serde deserializer. Read more

impl From<HostProperties> for Host
[src]

[src]

Performs the conversion.

Auto Trait Implementations