Struct rusoto_mgh::MigrationTaskSummary[][src]

pub struct MigrationTaskSummary {
    pub migration_task_name: Option<String>,
    pub progress_percent: Option<i64>,
    pub progress_update_stream: Option<String>,
    pub status: Option<String>,
    pub status_detail: Option<String>,
    pub update_date_time: Option<f64>,
}

MigrationTaskSummary includes MigrationTaskName, ProgressPercent, ProgressUpdateStream, Status, and UpdateDateTime for each task.

Fields

Unique identifier that references the migration task.

An AWS resource used for access control. It should uniquely identify the migration tool as it is used for all updates made by the tool.

Status of the task.

Detail information of what is being done within the overall status state.

The timestamp when the task was gathered.

Trait Implementations

impl Default for MigrationTaskSummary
[src]

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

impl Debug for MigrationTaskSummary
[src]

Formats the value using the given formatter. Read more

impl Clone for MigrationTaskSummary
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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