[][src]Struct rusoto_ec2::SnapshotTaskDetail

pub struct SnapshotTaskDetail {
    pub description: Option<String>,
    pub disk_image_size: Option<f64>,
    pub encrypted: Option<bool>,
    pub format: Option<String>,
    pub kms_key_id: Option<String>,
    pub progress: Option<String>,
    pub snapshot_id: Option<String>,
    pub status: Option<String>,
    pub status_message: Option<String>,
    pub url: Option<String>,
    pub user_bucket: Option<UserBucketDetails>,
}

Details about the import snapshot task.

Fields

description: Option<String>

The description of the snapshot.

disk_image_size: Option<f64>

The size of the disk in the snapshot, in GiB.

encrypted: Option<bool>

Indicates whether the snapshot is encrypted.

format: Option<String>

The format of the disk image from which the snapshot is created.

kms_key_id: Option<String>

The identifier for the AWS Key Management Service (AWS KMS) customer master key (CMK) that was used to create the encrypted snapshot.

progress: Option<String>

The percentage of completion for the import snapshot task.

snapshot_id: Option<String>

The snapshot ID of the disk being imported.

status: Option<String>

A brief status for the import snapshot task.

status_message: Option<String>

A detailed status message for the import snapshot task.

url: Option<String>

The URL of the disk image from which the snapshot is created.

user_bucket: Option<UserBucketDetails>

The S3 bucket for the disk image.

Trait Implementations

impl PartialEq<SnapshotTaskDetail> for SnapshotTaskDetail[src]

impl Default for SnapshotTaskDetail[src]

impl Clone for SnapshotTaskDetail[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for SnapshotTaskDetail[src]

Auto Trait Implementations

Blanket Implementations

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

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

type Owned = T

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

The type returned in the event of a conversion error.

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

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self