Struct rusoto_dms::TableStatistics[][src]

pub struct TableStatistics {
Show fields pub ddls: Option<i64>, pub deletes: Option<i64>, pub full_load_condtnl_chk_failed_rows: Option<i64>, pub full_load_end_time: Option<f64>, pub full_load_error_rows: Option<i64>, pub full_load_reloaded: Option<bool>, pub full_load_rows: Option<i64>, pub full_load_start_time: Option<f64>, 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>,
}
Expand description

Provides a collection of table statistics in response to a request by the DescribeTableStatistics operation.

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 migrations where DynamoDB is the target).

full_load_end_time: Option<f64>

The time when the full load operation completed.

full_load_error_rows: Option<i64>

The number of rows that failed to load during the full load operation (valid only for migrations where DynamoDB is the target).

full_load_reloaded: Option<bool>

A value that indicates if the table was reloaded (true) or loaded as part of a new full load operation (false).

full_load_rows: Option<i64>

The number of rows added during the full load operation.

full_load_start_time: Option<f64>

The time when the full load operation started.

inserts: Option<i64>

The number of insert actions performed on a table.

last_update_time: Option<f64>

The last time a 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.

This parameter can have the following values:

  • Not enabled – Validation isn't 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 don't match between the source and target.

  • Suspended records – Some records in the table couldn't be validated.

  • No primary key –The table couldn't be validated because it has no primary key.

  • Table error – The table wasn't validated because it's in an error state and some data wasn't migrated.

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

  • Error – The table couldn't be validated because of an unexpected error.

  • Pending validation – The table is waiting validation.

  • Preparing table – Preparing the table enabled in the migration task for validation.

  • Pending revalidation – All rows in the table are pending validation after the table was updated.

validation_state_details: Option<String>

Additional details about the state of validation.

validation_suspended_records: Option<i64>

The number of records that couldn't be validated.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Deserialize this value from the given Serde deserializer. Read more

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

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

Should always be Self

The resulting type after obtaining ownership.

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

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.