Struct rusoto_mgh::ListMigrationTasksResult[][src]

pub struct ListMigrationTasksResult {
    pub migration_task_summary_list: Option<Vec<MigrationTaskSummary>>,
    pub next_token: Option<String>,
}

Fields

Lists the migration task's summary which includes: MigrationTaskName, ProgressPercent, ProgressUpdateStream, Status, and the UpdateDateTime for each task.

If there are more migration tasks than the max result, return the next token to be passed to the next call as a bookmark of where to start from.

Trait Implementations

impl Default for ListMigrationTasksResult
[src]

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

impl Debug for ListMigrationTasksResult
[src]

Formats the value using the given formatter. Read more

impl Clone for ListMigrationTasksResult
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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