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

pub struct VolumeProperties {
    pub auto_enable_io: Option<Value<bool>>,
    pub availability_zone: Value<String>,
    pub encrypted: Option<Value<bool>>,
    pub iops: Option<Value<u32>>,
    pub kms_key_id: Option<Value<String>>,
    pub size: Option<Value<u32>>,
    pub snapshot_id: Option<Value<String>>,
    pub tags: Option<ValueList<Tag>>,
    pub volume_type: Option<Value<String>>,
}

Properties for the Volume resource.

Fields

Property AutoEnableIO.

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

Property AvailabilityZone.

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

Property Encrypted.

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

Property Iops.

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

Property KmsKeyId.

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

Property Size.

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

Property SnapshotId.

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

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

Trait Implementations

impl Debug for VolumeProperties
[src]

[src]

Formats the value using the given formatter. Read more

impl Default for VolumeProperties
[src]

[src]

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

impl Serialize for VolumeProperties
[src]

[src]

Serialize this value into the given Serde serializer. Read more

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

[src]

Deserialize this value from the given Serde deserializer. Read more

impl From<VolumeProperties> for Volume
[src]

[src]

Performs the conversion.

Auto Trait Implementations