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

pub struct VolumeProperties {
    pub ec2_volume_id: Value<String>,
    pub mount_point: Option<Value<String>>,
    pub name: Option<Value<String>>,
    pub stack_id: Value<String>,
}

Properties for the Volume resource.

Fields

Property Ec2VolumeId.

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

Property MountPoint.

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

Property Name.

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

Property StackId.

Update type: Immutable. AWS CloudFormation replaces 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