pub struct Volume {
    pub device_name: Option<String>,
    pub size: i64,
    pub type: VolumeType,
    pub iops: Option<i64>,
    pub throughput: Option<i64>,
    pub encrypted: Option<bool>,
    pub encryption_key: Option<String>,
}
Expand description

Volume encapsulates the configuration options for the storage device.

Fields

device_name: Option<String>

Device name

size: i64

Size specifies size (in Gi) of the storage device. Must be greater than the image snapshot size or 8 (whichever is greater).

type: VolumeType

Type is the type of the volume (e.g. gp2, io1, etc…).

iops: Option<i64>

IOPS is the number of IOPS requested for the disk. Not applicable to all types.

throughput: Option<i64>

Throughput to provision in MiB/s supported for the volume type. Not applicable to all types.

encrypted: Option<bool>

Encrypted is whether the volume should be encrypted or not.

encryption_key: Option<String>

EncryptionKey is the KMS key to use to encrypt the volume. Can be either a KMS key ID or ARN. If Encrypted is set and this is omitted, the default AWS key will be used. The key must already exist and be accessible by the controller.

Implementations

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Deserialize this value from the given Serde deserializer. Read more

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more