[][src]Struct rusoto_ec2::ExportImageTask

pub struct ExportImageTask {
    pub description: Option<String>,
    pub export_image_task_id: Option<String>,
    pub image_id: Option<String>,
    pub progress: Option<String>,
    pub s3_export_location: Option<ExportTaskS3Location>,
    pub status: Option<String>,
    pub status_message: Option<String>,
}

Describes an export image task.

Fields

description: Option<String>

A description of the image being exported.

export_image_task_id: Option<String>

The ID of the export image task.

image_id: Option<String>

The ID of the image.

progress: Option<String>

The percent complete of the export image task.

s3_export_location: Option<ExportTaskS3Location>

Information about the destination S3 bucket.

status: Option<String>

The status of the export image task. The possible values are active, completed, deleting, and deleted.

status_message: Option<String>

The status message for the export image task.

Trait Implementations

impl Clone for ExportImageTask[src]

impl Debug for ExportImageTask[src]

impl Default for ExportImageTask[src]

impl PartialEq<ExportImageTask> for ExportImageTask[src]

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