[][src]Struct rusoto_ec2::ExportImageResult

pub struct ExportImageResult {
    pub description: Option<String>,
    pub disk_image_format: Option<String>,
    pub export_image_task_id: Option<String>,
    pub image_id: Option<String>,
    pub progress: Option<String>,
    pub role_name: Option<String>,
    pub s3_export_location: Option<ExportTaskS3Location>,
    pub status: Option<String>,
    pub status_message: Option<String>,
    pub tags: Option<Vec<Tag>>,
}

Fields

description: Option<String>

A description of the image being exported.

disk_image_format: Option<String>

The disk image format for the exported image.

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.

role_name: Option<String>

The name of the role that grants VM Import/Export permission to export images to your Amazon S3 bucket.

s3_export_location: Option<ExportTaskS3Location>

Information about the destination Amazon 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.

tags: Option<Vec<Tag>>

Any tags assigned to the image being exported.

Trait Implementations

impl Clone for ExportImageResult[src]

impl Debug for ExportImageResult[src]

impl Default for ExportImageResult[src]

impl PartialEq<ExportImageResult> for ExportImageResult[src]

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