[][src]Struct rusoto_dms::TableStatistics

pub struct TableStatistics {
    pub ddls: Option<i64>,
    pub deletes: Option<i64>,
    pub full_load_condtnl_chk_failed_rows: Option<i64>,
    pub full_load_error_rows: Option<i64>,
    pub full_load_rows: Option<i64>,
    pub inserts: Option<i64>,
    pub last_update_time: Option<f64>,
    pub schema_name: Option<String>,
    pub table_name: Option<String>,
    pub table_state: Option<String>,
    pub updates: Option<i64>,
    pub validation_failed_records: Option<i64>,
    pub validation_pending_records: Option<i64>,
    pub validation_state: Option<String>,
    pub validation_state_details: Option<String>,
    pub validation_suspended_records: Option<i64>,
}

Fields

The Data Definition Language (DDL) used to build and modify the structure of your tables.

The number of delete actions performed on a table.

The number of rows that failed conditional checks during the Full Load operation (valid only for DynamoDB as a target migrations).

The number of rows that failed to load during the Full Load operation (valid only for DynamoDB as a target migrations).

The number of rows added during the Full Load operation.

The number of insert actions performed on a table.

The last time the table was updated.

The schema name.

The name of the table.

The state of the tables described.

Valid states: Table does not exist | Before load | Full load | Table completed | Table cancelled | Table error | Table all | Table updates | Table is being reloaded

The number of update actions performed on a table.

The number of records that failed validation.

The number of records that have yet to be validated.

The validation state of the table.

The parameter can have the following values

  • Not enabled—Validation is not enabled for the table in the migration task.

  • Pending records—Some records in the table are waiting for validation.

  • Mismatched records—Some records in the table do not match between the source and target.

  • Suspended records—Some records in the table could not be validated.

  • No primary key—The table could not be validated because it had no primary key.

  • Table error—The table was not validated because it was in an error state and some data was not migrated.

  • Validated—All rows in the table were validated. If the table is updated, the status can change from Validated.

  • Error—The table could not be validated because of an unexpected error.

Additional details about the state of validation.

The number of records that could not be validated.

Trait Implementations

impl Clone for TableStatistics
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq<TableStatistics> for TableStatistics
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Default for TableStatistics
[src]

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

impl Debug for TableStatistics
[src]

Formats the value using the given formatter. Read more

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

Deserialize this value from the given Serde deserializer. Read more

Auto Trait Implementations

Blanket Implementations

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

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

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

Performs the conversion.

impl<T> From for T
[src]

Performs the conversion.

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

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

Immutably borrows from an owned value. Read more

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

Mutably borrows from an owned value. Read more

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

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

🔬 This is a nightly-only experimental API. (get_type_id)

this method will likely be replaced by an associated static

Gets the TypeId of self. Read more

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

impl<T> Erased for T

impl<T> Same for T

Should always be Self