[][src]Struct rusoto_ec2::ImportImageRequest

pub struct ImportImageRequest {
    pub architecture: Option<String>,
    pub client_data: Option<ClientData>,
    pub client_token: Option<String>,
    pub description: Option<String>,
    pub disk_containers: Option<Vec<ImageDiskContainer>>,
    pub dry_run: Option<bool>,
    pub hypervisor: Option<String>,
    pub license_type: Option<String>,
    pub platform: Option<String>,
    pub role_name: Option<String>,
}

Contains the parameters for ImportImage.

Fields

The architecture of the virtual machine.

Valid values: i386 | x86_64

The client-specific data.

The token to enable idempotency for VM import requests.

A description string for the import image task.

Information about the disk containers.

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.

The target hypervisor platform.

Valid values: xen

The license type to be used for the Amazon Machine Image (AMI) after importing.

Note: You may only use BYOL if you have existing licenses with rights to use these licenses in a third party cloud like AWS. For more information, see Prerequisites in the VM Import/Export User Guide.

Valid values: AWS | BYOL

The operating system of the virtual machine.

Valid values: Windows | Linux

The name of the role to use when not using the default role, 'vmimport'.

Trait Implementations

impl Clone for ImportImageRequest
[src]

Performs copy-assignment from source. Read more

impl Default for ImportImageRequest
[src]

impl PartialEq<ImportImageRequest> for ImportImageRequest
[src]

impl Debug for ImportImageRequest
[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From for T
[src]

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

impl<T> Same for T

Should always be Self

impl<T> Erased for T