[][src]Struct rusoto_securityhub::AwsEc2VolumeAttachment

pub struct AwsEc2VolumeAttachment {
    pub attach_time: Option<String>,
    pub delete_on_termination: Option<bool>,
    pub instance_id: Option<String>,
    pub status: Option<String>,
}

An attachment to an AWS EC2 volume.

Fields

attach_time: Option<String>

The datetime when the attachment initiated.

delete_on_termination: Option<bool>

Whether the EBS volume is deleted when the EC2 instance is terminated.

instance_id: Option<String>

The identifier of the EC2 instance.

status: Option<String>

The attachment state of the volume.

Trait Implementations

impl Clone for AwsEc2VolumeAttachment[src]

impl Debug for AwsEc2VolumeAttachment[src]

impl Default for AwsEc2VolumeAttachment[src]

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

impl PartialEq<AwsEc2VolumeAttachment> for AwsEc2VolumeAttachment[src]

impl Serialize for AwsEc2VolumeAttachment[src]

impl StructuralPartialEq for AwsEc2VolumeAttachment[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.