[][src]Struct rusoto_ec2::ExportImageRequest

pub struct ExportImageRequest {
    pub client_token: Option<String>,
    pub description: Option<String>,
    pub disk_image_format: String,
    pub dry_run: Option<bool>,
    pub image_id: String,
    pub role_name: Option<String>,
    pub s3_export_location: ExportTaskS3LocationRequest,
}

Fields

client_token: Option<String>

Token to enable idempotency for export image requests.

description: Option<String>

A description of the image being exported. The maximum length is 255 bytes.

disk_image_format: String

The disk image format.

dry_run: Option<bool>

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

image_id: String

The ID of the image.

role_name: Option<String>

The name of the role that grants VM Import/Export permission to export images to your S3 bucket. If this parameter is not specified, the default role is named 'vmimport'.

s3_export_location: ExportTaskS3LocationRequest

Information about the destination S3 bucket. The bucket must exist and grant WRITE and READ_ACP permissions to the AWS account vm-import-export@amazon.com.

Trait Implementations

impl Clone for ExportImageRequest[src]

impl Debug for ExportImageRequest[src]

impl Default for ExportImageRequest[src]

impl PartialEq<ExportImageRequest> for ExportImageRequest[src]

impl StructuralPartialEq for ExportImageRequest[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> Sealed<T> for T where
    T: ?Sized

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.