[−][src]Struct rusoto_dms::TableStatistics
Fields
ddls: Option<i64>
The Data Definition Language (DDL) used to build and modify the structure of your tables.
deletes: Option<i64>
The number of delete actions performed on a table.
full_load_condtnl_chk_failed_rows: Option<i64>
The number of rows that failed conditional checks during the Full Load operation (valid only for DynamoDB as a target migrations).
full_load_error_rows: Option<i64>
The number of rows that failed to load during the Full Load operation (valid only for DynamoDB as a target migrations).
full_load_rows: Option<i64>
The number of rows added during the Full Load operation.
inserts: Option<i64>
The number of insert actions performed on a table.
last_update_time: Option<f64>
The last time the table was updated.
schema_name: Option<String>
The schema name.
table_name: Option<String>
The name of the table.
table_state: Option<String>
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
updates: Option<i64>
The number of update actions performed on a table.
validation_failed_records: Option<i64>
The number of records that failed validation.
validation_pending_records: Option<i64>
The number of records that have yet to be validated.
validation_state: Option<String>
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.
validation_state_details: Option<String>
Additional details about the state of validation.
validation_suspended_records: Option<i64>
The number of records that could not be validated.
Trait Implementations
impl PartialEq<TableStatistics> for TableStatistics
[src]
fn eq(&self, other: &TableStatistics) -> bool
[src]
fn ne(&self, other: &TableStatistics) -> bool
[src]
impl Default for TableStatistics
[src]
fn default() -> TableStatistics
[src]
impl Clone for TableStatistics
[src]
fn clone(&self) -> TableStatistics
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for TableStatistics
[src]
impl<'de> Deserialize<'de> for TableStatistics
[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
[src]
__D: Deserializer<'de>,
Auto Trait Implementations
impl Send for TableStatistics
impl Sync for TableStatistics
Blanket Implementations
impl<T> From for T
[src]
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
impl<T> DeserializeOwned for T where
T: Deserialize<'de>,
[src]
T: Deserialize<'de>,
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self