[][src]Struct rusoto_securityhub::AwsEc2VolumeDetails

pub struct AwsEc2VolumeDetails {
    pub attachments: Option<Vec<AwsEc2VolumeAttachment>>,
    pub create_time: Option<String>,
    pub encrypted: Option<bool>,
    pub kms_key_id: Option<String>,
    pub size: Option<i64>,
    pub snapshot_id: Option<String>,
    pub status: Option<String>,
}

Details about an EC2 volume.

Fields

attachments: Option<Vec<AwsEc2VolumeAttachment>>

The volume attachments.

create_time: Option<String>

The datetime when the volume was created.

encrypted: Option<bool>

Whether the volume is encrypted.

kms_key_id: Option<String>

The ARN of the AWS Key Management Service (AWS KMS) customer master key (CMK) that was used to protect the volume encryption key for the volume.

size: Option<i64>

The size of the volume, in GiBs.

snapshot_id: Option<String>

The snapshot from which the volume was created.

status: Option<String>

The volume state.

Trait Implementations

impl Clone for AwsEc2VolumeDetails[src]

impl Debug for AwsEc2VolumeDetails[src]

impl Default for AwsEc2VolumeDetails[src]

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

impl PartialEq<AwsEc2VolumeDetails> for AwsEc2VolumeDetails[src]

impl Serialize for AwsEc2VolumeDetails[src]

impl StructuralPartialEq for AwsEc2VolumeDetails[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> Instrument for T[src]

impl<T> Instrument 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> 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.