Struct rusoto_ec2::ImportInstanceTaskDetails[][src]

pub struct ImportInstanceTaskDetails {
    pub description: Option<String>,
    pub instance_id: Option<String>,
    pub platform: Option<String>,
    pub volumes: Vec<ImportInstanceVolumeDetailItem>,
}

Describes an import instance task.

Fields

A description of the task.

The ID of the instance.

The instance operating system.

One or more volumes.

Trait Implementations

impl Default for ImportInstanceTaskDetails
[src]

Returns the "default value" for a type. Read more

impl Debug for ImportInstanceTaskDetails
[src]

Formats the value using the given formatter. Read more

impl Clone for ImportInstanceTaskDetails
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for ImportInstanceTaskDetails
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations