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

pub struct NatGatewayProperties {
    pub allocation_id: Value<String>,
    pub subnet_id: Value<String>,
    pub tags: Option<ValueList<Tag>>,
}

Properties for the NatGateway resource.

Fields

Property AllocationId.

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

Property SubnetId.

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 NatGatewayProperties
[src]

[src]

Formats the value using the given formatter. Read more

impl Default for NatGatewayProperties
[src]

[src]

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

impl Serialize for NatGatewayProperties
[src]

[src]

Serialize this value into the given Serde serializer. Read more

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

[src]

Deserialize this value from the given Serde deserializer. Read more

impl From<NatGatewayProperties> for NatGateway
[src]

[src]

Performs the conversion.

Auto Trait Implementations