[][src]Struct rusoto_dms::ReplicationTaskStats

pub struct ReplicationTaskStats {
    pub elapsed_time_millis: Option<i64>,
    pub fresh_start_date: Option<f64>,
    pub full_load_finish_date: Option<f64>,
    pub full_load_progress_percent: Option<i64>,
    pub full_load_start_date: Option<f64>,
    pub start_date: Option<f64>,
    pub stop_date: Option<f64>,
    pub tables_errored: Option<i64>,
    pub tables_loaded: Option<i64>,
    pub tables_loading: Option<i64>,
    pub tables_queued: Option<i64>,
}

In response to a request by the DescribeReplicationTasks operation, this object provides a collection of statistics about a replication task.

Fields

elapsed_time_millis: Option<i64>

The elapsed time of the task, in milliseconds.

fresh_start_date: Option<f64>

The date the replication task was started either with a fresh start or a target reload.

full_load_finish_date: Option<f64>

The date the replication task full load was completed.

full_load_progress_percent: Option<i64>

The percent complete for the full load migration task.

full_load_start_date: Option<f64>

The date the replication task full load was started.

start_date: Option<f64>

The date the replication task was started either with a fresh start or a resume. For more information, see StartReplicationTaskType.

stop_date: Option<f64>

The date the replication task was stopped.

tables_errored: Option<i64>

The number of errors that have occurred during this task.

tables_loaded: Option<i64>

The number of tables loaded for this task.

tables_loading: Option<i64>

The number of tables currently loading for this task.

tables_queued: Option<i64>

The number of tables queued for this task.

Trait Implementations

impl Clone for ReplicationTaskStats[src]

impl Debug for ReplicationTaskStats[src]

impl Default for ReplicationTaskStats[src]

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

impl PartialEq<ReplicationTaskStats> for ReplicationTaskStats[src]

impl StructuralPartialEq for ReplicationTaskStats[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.