Struct rusoto_mgh::MigrationTask[][src]

pub struct MigrationTask {
    pub migration_task_name: Option<String>,
    pub progress_update_stream: Option<String>,
    pub resource_attribute_list: Option<Vec<ResourceAttribute>>,
    pub task: Option<Task>,
    pub update_date_time: Option<f64>,
}

Represents a migration task in a migration tool.

Fields

Unique identifier that references the migration task.

A name that identifies the vendor of the migration tool being used.

Task object encapsulating task information.

The timestamp when the task was gathered.

Trait Implementations

impl Default for MigrationTask
[src]

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

impl Debug for MigrationTask
[src]

Formats the value using the given formatter. Read more

impl Clone for MigrationTask
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for MigrationTask
[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