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

pub struct SubnetProperties {
    pub assign_ipv6_address_on_creation: Option<Value<bool>>,
    pub availability_zone: Option<Value<String>>,
    pub cidr_block: Value<String>,
    pub ipv6_cidr_block: Option<Value<String>>,
    pub map_public_ip_on_launch: Option<Value<bool>>,
    pub tags: Option<ValueList<Tag>>,
    pub vpc_id: Value<String>,
}

Properties for the Subnet resource.

Fields

Property AssignIpv6AddressOnCreation.

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 CidrBlock.

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

Property Ipv6CidrBlock.

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

Property MapPublicIpOnLaunch.

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

Property Tags.

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

Property VpcId.

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

Trait Implementations

impl Debug for SubnetProperties
[src]

[src]

Formats the value using the given formatter. Read more

impl Default for SubnetProperties
[src]

[src]

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

impl Serialize for SubnetProperties
[src]

[src]

Serialize this value into the given Serde serializer. Read more

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

[src]

Deserialize this value from the given Serde deserializer. Read more

impl From<SubnetProperties> for Subnet
[src]

[src]

Performs the conversion.

Auto Trait Implementations