[][src]Struct rusoto_mgh::MigrationTaskSummary

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

migration_task_name: Option<String>

Unique identifier that references the migration task. Do not store personal data in this field.

progress_percent: Option<i64>

Indication of the percentage completion of the task.

progress_update_stream: Option<String>

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: Option<String>

Status of the task.

status_detail: Option<String>

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

update_date_time: Option<f64>

The timestamp when the task was gathered.

Trait Implementations

impl Clone for MigrationTaskSummary[src]

impl Debug for MigrationTaskSummary[src]

impl Default for MigrationTaskSummary[src]

impl<'de> Deserialize<'de> for MigrationTaskSummary[src]

impl PartialEq<MigrationTaskSummary> for MigrationTaskSummary[src]

impl StructuralPartialEq for MigrationTaskSummary[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.