[][src]Struct rusoto_imagebuilder::EbsInstanceBlockDeviceSpecification

pub struct EbsInstanceBlockDeviceSpecification {
    pub delete_on_termination: Option<bool>,
    pub encrypted: Option<bool>,
    pub iops: Option<i64>,
    pub kms_key_id: Option<String>,
    pub snapshot_id: Option<String>,
    pub volume_size: Option<i64>,
    pub volume_type: Option<String>,
}

Amazon EBS-specific block device mapping specifications.

Fields

delete_on_termination: Option<bool>

Use to configure delete on termination of the associated device.

encrypted: Option<bool>

Use to configure device encryption.

iops: Option<i64>

Use to configure device IOPS.

kms_key_id: Option<String>

Use to configure the KMS key to use when encrypting the device.

snapshot_id: Option<String>

The snapshot that defines the device contents.

volume_size: Option<i64>

Use to override the device's volume size.

volume_type: Option<String>

Use to override the device's volume type.

Trait Implementations

impl Clone for EbsInstanceBlockDeviceSpecification[src]

impl Debug for EbsInstanceBlockDeviceSpecification[src]

impl Default for EbsInstanceBlockDeviceSpecification[src]

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

impl PartialEq<EbsInstanceBlockDeviceSpecification> for EbsInstanceBlockDeviceSpecification[src]

impl Serialize for EbsInstanceBlockDeviceSpecification[src]

impl StructuralPartialEq for EbsInstanceBlockDeviceSpecification[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Sealed<T> for T where
    T: ?Sized

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.