Class: Aws::DatabaseMigrationService::Types::TableStatistics
- Inherits:
-
Struct
- Object
- Struct
- Aws::DatabaseMigrationService::Types::TableStatistics
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-databasemigrationservice/types.rb
Overview
Provides a collection of table statistics in response to a request by the ‘DescribeTableStatistics` operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#applied_ddls ⇒ Integer
The number of data definition language (DDL) statements used to build and modify the structure of your tables applied on the target.
-
#applied_deletes ⇒ Integer
The number of delete actions applied on a target table.
-
#applied_inserts ⇒ Integer
The number of insert actions applied on a target table.
-
#applied_updates ⇒ Integer
The number of update actions applied on a target table.
-
#ddls ⇒ Integer
The data definition language (DDL) used to build and modify the structure of your tables.
-
#deletes ⇒ Integer
The number of delete actions performed on a table.
-
#full_load_condtnl_chk_failed_rows ⇒ Integer
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 ⇒ Time
The time when the full load operation completed.
-
#full_load_error_rows ⇒ Integer
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 ⇒ Boolean
A value that indicates if the table was reloaded (‘true`) or loaded as part of a new full load operation (`false`).
-
#full_load_rows ⇒ Integer
The number of rows added during the full load operation.
-
#full_load_start_time ⇒ Time
The time when the full load operation started.
-
#inserts ⇒ Integer
The number of insert actions performed on a table.
-
#last_update_time ⇒ Time
The last time a table was updated.
-
#schema_name ⇒ String
The schema name.
-
#table_name ⇒ String
The name of the table.
-
#table_state ⇒ String
The state of the tables described.
-
#updates ⇒ Integer
The number of update actions performed on a table.
-
#validation_failed_records ⇒ Integer
The number of records that failed validation.
-
#validation_pending_records ⇒ Integer
The number of records that have yet to be validated.
-
#validation_state ⇒ String
The validation state of the table.
-
#validation_state_details ⇒ String
Additional details about the state of validation.
-
#validation_suspended_records ⇒ Integer
The number of records that couldn’t be validated.
Instance Attribute Details
#applied_ddls ⇒ Integer
The number of data definition language (DDL) statements used to build and modify the structure of your tables applied on the target.
14203 14204 14205 14206 14207 14208 14209 14210 14211 14212 14213 14214 14215 14216 14217 14218 14219 14220 14221 14222 14223 14224 14225 14226 14227 14228 14229 |
# File 'lib/aws-sdk-databasemigrationservice/types.rb', line 14203 class TableStatistics < Struct.new( :schema_name, :table_name, :inserts, :deletes, :updates, :ddls, :applied_inserts, :applied_deletes, :applied_updates, :applied_ddls, :full_load_rows, :full_load_condtnl_chk_failed_rows, :full_load_error_rows, :full_load_start_time, :full_load_end_time, :full_load_reloaded, :last_update_time, :table_state, :validation_pending_records, :validation_failed_records, :validation_suspended_records, :validation_state, :validation_state_details) SENSITIVE = [] include Aws::Structure end |
#applied_deletes ⇒ Integer
The number of delete actions applied on a target table.
14203 14204 14205 14206 14207 14208 14209 14210 14211 14212 14213 14214 14215 14216 14217 14218 14219 14220 14221 14222 14223 14224 14225 14226 14227 14228 14229 |
# File 'lib/aws-sdk-databasemigrationservice/types.rb', line 14203 class TableStatistics < Struct.new( :schema_name, :table_name, :inserts, :deletes, :updates, :ddls, :applied_inserts, :applied_deletes, :applied_updates, :applied_ddls, :full_load_rows, :full_load_condtnl_chk_failed_rows, :full_load_error_rows, :full_load_start_time, :full_load_end_time, :full_load_reloaded, :last_update_time, :table_state, :validation_pending_records, :validation_failed_records, :validation_suspended_records, :validation_state, :validation_state_details) SENSITIVE = [] include Aws::Structure end |
#applied_inserts ⇒ Integer
The number of insert actions applied on a target table.
14203 14204 14205 14206 14207 14208 14209 14210 14211 14212 14213 14214 14215 14216 14217 14218 14219 14220 14221 14222 14223 14224 14225 14226 14227 14228 14229 |
# File 'lib/aws-sdk-databasemigrationservice/types.rb', line 14203 class TableStatistics < Struct.new( :schema_name, :table_name, :inserts, :deletes, :updates, :ddls, :applied_inserts, :applied_deletes, :applied_updates, :applied_ddls, :full_load_rows, :full_load_condtnl_chk_failed_rows, :full_load_error_rows, :full_load_start_time, :full_load_end_time, :full_load_reloaded, :last_update_time, :table_state, :validation_pending_records, :validation_failed_records, :validation_suspended_records, :validation_state, :validation_state_details) SENSITIVE = [] include Aws::Structure end |
#applied_updates ⇒ Integer
The number of update actions applied on a target table.
14203 14204 14205 14206 14207 14208 14209 14210 14211 14212 14213 14214 14215 14216 14217 14218 14219 14220 14221 14222 14223 14224 14225 14226 14227 14228 14229 |
# File 'lib/aws-sdk-databasemigrationservice/types.rb', line 14203 class TableStatistics < Struct.new( :schema_name, :table_name, :inserts, :deletes, :updates, :ddls, :applied_inserts, :applied_deletes, :applied_updates, :applied_ddls, :full_load_rows, :full_load_condtnl_chk_failed_rows, :full_load_error_rows, :full_load_start_time, :full_load_end_time, :full_load_reloaded, :last_update_time, :table_state, :validation_pending_records, :validation_failed_records, :validation_suspended_records, :validation_state, :validation_state_details) SENSITIVE = [] include Aws::Structure end |
#ddls ⇒ Integer
The data definition language (DDL) used to build and modify the structure of your tables.
14203 14204 14205 14206 14207 14208 14209 14210 14211 14212 14213 14214 14215 14216 14217 14218 14219 14220 14221 14222 14223 14224 14225 14226 14227 14228 14229 |
# File 'lib/aws-sdk-databasemigrationservice/types.rb', line 14203 class TableStatistics < Struct.new( :schema_name, :table_name, :inserts, :deletes, :updates, :ddls, :applied_inserts, :applied_deletes, :applied_updates, :applied_ddls, :full_load_rows, :full_load_condtnl_chk_failed_rows, :full_load_error_rows, :full_load_start_time, :full_load_end_time, :full_load_reloaded, :last_update_time, :table_state, :validation_pending_records, :validation_failed_records, :validation_suspended_records, :validation_state, :validation_state_details) SENSITIVE = [] include Aws::Structure end |
#deletes ⇒ Integer
The number of delete actions performed on a table.
14203 14204 14205 14206 14207 14208 14209 14210 14211 14212 14213 14214 14215 14216 14217 14218 14219 14220 14221 14222 14223 14224 14225 14226 14227 14228 14229 |
# File 'lib/aws-sdk-databasemigrationservice/types.rb', line 14203 class TableStatistics < Struct.new( :schema_name, :table_name, :inserts, :deletes, :updates, :ddls, :applied_inserts, :applied_deletes, :applied_updates, :applied_ddls, :full_load_rows, :full_load_condtnl_chk_failed_rows, :full_load_error_rows, :full_load_start_time, :full_load_end_time, :full_load_reloaded, :last_update_time, :table_state, :validation_pending_records, :validation_failed_records, :validation_suspended_records, :validation_state, :validation_state_details) SENSITIVE = [] include Aws::Structure end |
#full_load_condtnl_chk_failed_rows ⇒ Integer
The number of rows that failed conditional checks during the full load operation (valid only for migrations where DynamoDB is the target).
14203 14204 14205 14206 14207 14208 14209 14210 14211 14212 14213 14214 14215 14216 14217 14218 14219 14220 14221 14222 14223 14224 14225 14226 14227 14228 14229 |
# File 'lib/aws-sdk-databasemigrationservice/types.rb', line 14203 class TableStatistics < Struct.new( :schema_name, :table_name, :inserts, :deletes, :updates, :ddls, :applied_inserts, :applied_deletes, :applied_updates, :applied_ddls, :full_load_rows, :full_load_condtnl_chk_failed_rows, :full_load_error_rows, :full_load_start_time, :full_load_end_time, :full_load_reloaded, :last_update_time, :table_state, :validation_pending_records, :validation_failed_records, :validation_suspended_records, :validation_state, :validation_state_details) SENSITIVE = [] include Aws::Structure end |
#full_load_end_time ⇒ Time
The time when the full load operation completed.
14203 14204 14205 14206 14207 14208 14209 14210 14211 14212 14213 14214 14215 14216 14217 14218 14219 14220 14221 14222 14223 14224 14225 14226 14227 14228 14229 |
# File 'lib/aws-sdk-databasemigrationservice/types.rb', line 14203 class TableStatistics < Struct.new( :schema_name, :table_name, :inserts, :deletes, :updates, :ddls, :applied_inserts, :applied_deletes, :applied_updates, :applied_ddls, :full_load_rows, :full_load_condtnl_chk_failed_rows, :full_load_error_rows, :full_load_start_time, :full_load_end_time, :full_load_reloaded, :last_update_time, :table_state, :validation_pending_records, :validation_failed_records, :validation_suspended_records, :validation_state, :validation_state_details) SENSITIVE = [] include Aws::Structure end |
#full_load_error_rows ⇒ Integer
The number of rows that failed to load during the full load operation (valid only for migrations where DynamoDB is the target).
14203 14204 14205 14206 14207 14208 14209 14210 14211 14212 14213 14214 14215 14216 14217 14218 14219 14220 14221 14222 14223 14224 14225 14226 14227 14228 14229 |
# File 'lib/aws-sdk-databasemigrationservice/types.rb', line 14203 class TableStatistics < Struct.new( :schema_name, :table_name, :inserts, :deletes, :updates, :ddls, :applied_inserts, :applied_deletes, :applied_updates, :applied_ddls, :full_load_rows, :full_load_condtnl_chk_failed_rows, :full_load_error_rows, :full_load_start_time, :full_load_end_time, :full_load_reloaded, :last_update_time, :table_state, :validation_pending_records, :validation_failed_records, :validation_suspended_records, :validation_state, :validation_state_details) SENSITIVE = [] include Aws::Structure end |
#full_load_reloaded ⇒ Boolean
A value that indicates if the table was reloaded (‘true`) or loaded as part of a new full load operation (`false`).
14203 14204 14205 14206 14207 14208 14209 14210 14211 14212 14213 14214 14215 14216 14217 14218 14219 14220 14221 14222 14223 14224 14225 14226 14227 14228 14229 |
# File 'lib/aws-sdk-databasemigrationservice/types.rb', line 14203 class TableStatistics < Struct.new( :schema_name, :table_name, :inserts, :deletes, :updates, :ddls, :applied_inserts, :applied_deletes, :applied_updates, :applied_ddls, :full_load_rows, :full_load_condtnl_chk_failed_rows, :full_load_error_rows, :full_load_start_time, :full_load_end_time, :full_load_reloaded, :last_update_time, :table_state, :validation_pending_records, :validation_failed_records, :validation_suspended_records, :validation_state, :validation_state_details) SENSITIVE = [] include Aws::Structure end |
#full_load_rows ⇒ Integer
The number of rows added during the full load operation.
14203 14204 14205 14206 14207 14208 14209 14210 14211 14212 14213 14214 14215 14216 14217 14218 14219 14220 14221 14222 14223 14224 14225 14226 14227 14228 14229 |
# File 'lib/aws-sdk-databasemigrationservice/types.rb', line 14203 class TableStatistics < Struct.new( :schema_name, :table_name, :inserts, :deletes, :updates, :ddls, :applied_inserts, :applied_deletes, :applied_updates, :applied_ddls, :full_load_rows, :full_load_condtnl_chk_failed_rows, :full_load_error_rows, :full_load_start_time, :full_load_end_time, :full_load_reloaded, :last_update_time, :table_state, :validation_pending_records, :validation_failed_records, :validation_suspended_records, :validation_state, :validation_state_details) SENSITIVE = [] include Aws::Structure end |
#full_load_start_time ⇒ Time
The time when the full load operation started.
14203 14204 14205 14206 14207 14208 14209 14210 14211 14212 14213 14214 14215 14216 14217 14218 14219 14220 14221 14222 14223 14224 14225 14226 14227 14228 14229 |
# File 'lib/aws-sdk-databasemigrationservice/types.rb', line 14203 class TableStatistics < Struct.new( :schema_name, :table_name, :inserts, :deletes, :updates, :ddls, :applied_inserts, :applied_deletes, :applied_updates, :applied_ddls, :full_load_rows, :full_load_condtnl_chk_failed_rows, :full_load_error_rows, :full_load_start_time, :full_load_end_time, :full_load_reloaded, :last_update_time, :table_state, :validation_pending_records, :validation_failed_records, :validation_suspended_records, :validation_state, :validation_state_details) SENSITIVE = [] include Aws::Structure end |
#inserts ⇒ Integer
The number of insert actions performed on a table.
14203 14204 14205 14206 14207 14208 14209 14210 14211 14212 14213 14214 14215 14216 14217 14218 14219 14220 14221 14222 14223 14224 14225 14226 14227 14228 14229 |
# File 'lib/aws-sdk-databasemigrationservice/types.rb', line 14203 class TableStatistics < Struct.new( :schema_name, :table_name, :inserts, :deletes, :updates, :ddls, :applied_inserts, :applied_deletes, :applied_updates, :applied_ddls, :full_load_rows, :full_load_condtnl_chk_failed_rows, :full_load_error_rows, :full_load_start_time, :full_load_end_time, :full_load_reloaded, :last_update_time, :table_state, :validation_pending_records, :validation_failed_records, :validation_suspended_records, :validation_state, :validation_state_details) SENSITIVE = [] include Aws::Structure end |
#last_update_time ⇒ Time
The last time a table was updated.
14203 14204 14205 14206 14207 14208 14209 14210 14211 14212 14213 14214 14215 14216 14217 14218 14219 14220 14221 14222 14223 14224 14225 14226 14227 14228 14229 |
# File 'lib/aws-sdk-databasemigrationservice/types.rb', line 14203 class TableStatistics < Struct.new( :schema_name, :table_name, :inserts, :deletes, :updates, :ddls, :applied_inserts, :applied_deletes, :applied_updates, :applied_ddls, :full_load_rows, :full_load_condtnl_chk_failed_rows, :full_load_error_rows, :full_load_start_time, :full_load_end_time, :full_load_reloaded, :last_update_time, :table_state, :validation_pending_records, :validation_failed_records, :validation_suspended_records, :validation_state, :validation_state_details) SENSITIVE = [] include Aws::Structure end |
#schema_name ⇒ String
The schema name.
14203 14204 14205 14206 14207 14208 14209 14210 14211 14212 14213 14214 14215 14216 14217 14218 14219 14220 14221 14222 14223 14224 14225 14226 14227 14228 14229 |
# File 'lib/aws-sdk-databasemigrationservice/types.rb', line 14203 class TableStatistics < Struct.new( :schema_name, :table_name, :inserts, :deletes, :updates, :ddls, :applied_inserts, :applied_deletes, :applied_updates, :applied_ddls, :full_load_rows, :full_load_condtnl_chk_failed_rows, :full_load_error_rows, :full_load_start_time, :full_load_end_time, :full_load_reloaded, :last_update_time, :table_state, :validation_pending_records, :validation_failed_records, :validation_suspended_records, :validation_state, :validation_state_details) SENSITIVE = [] include Aws::Structure end |
#table_name ⇒ String
The name of the table.
14203 14204 14205 14206 14207 14208 14209 14210 14211 14212 14213 14214 14215 14216 14217 14218 14219 14220 14221 14222 14223 14224 14225 14226 14227 14228 14229 |
# File 'lib/aws-sdk-databasemigrationservice/types.rb', line 14203 class TableStatistics < Struct.new( :schema_name, :table_name, :inserts, :deletes, :updates, :ddls, :applied_inserts, :applied_deletes, :applied_updates, :applied_ddls, :full_load_rows, :full_load_condtnl_chk_failed_rows, :full_load_error_rows, :full_load_start_time, :full_load_end_time, :full_load_reloaded, :last_update_time, :table_state, :validation_pending_records, :validation_failed_records, :validation_suspended_records, :validation_state, :validation_state_details) SENSITIVE = [] include Aws::Structure end |
#table_state ⇒ String
The state of the tables described.
Valid states: Table does not exist | Before load | Full load | Table completed | Table cancelled | Table error | Table is being reloaded
14203 14204 14205 14206 14207 14208 14209 14210 14211 14212 14213 14214 14215 14216 14217 14218 14219 14220 14221 14222 14223 14224 14225 14226 14227 14228 14229 |
# File 'lib/aws-sdk-databasemigrationservice/types.rb', line 14203 class TableStatistics < Struct.new( :schema_name, :table_name, :inserts, :deletes, :updates, :ddls, :applied_inserts, :applied_deletes, :applied_updates, :applied_ddls, :full_load_rows, :full_load_condtnl_chk_failed_rows, :full_load_error_rows, :full_load_start_time, :full_load_end_time, :full_load_reloaded, :last_update_time, :table_state, :validation_pending_records, :validation_failed_records, :validation_suspended_records, :validation_state, :validation_state_details) SENSITIVE = [] include Aws::Structure end |
#updates ⇒ Integer
The number of update actions performed on a table.
14203 14204 14205 14206 14207 14208 14209 14210 14211 14212 14213 14214 14215 14216 14217 14218 14219 14220 14221 14222 14223 14224 14225 14226 14227 14228 14229 |
# File 'lib/aws-sdk-databasemigrationservice/types.rb', line 14203 class TableStatistics < Struct.new( :schema_name, :table_name, :inserts, :deletes, :updates, :ddls, :applied_inserts, :applied_deletes, :applied_updates, :applied_ddls, :full_load_rows, :full_load_condtnl_chk_failed_rows, :full_load_error_rows, :full_load_start_time, :full_load_end_time, :full_load_reloaded, :last_update_time, :table_state, :validation_pending_records, :validation_failed_records, :validation_suspended_records, :validation_state, :validation_state_details) SENSITIVE = [] include Aws::Structure end |
#validation_failed_records ⇒ Integer
The number of records that failed validation.
14203 14204 14205 14206 14207 14208 14209 14210 14211 14212 14213 14214 14215 14216 14217 14218 14219 14220 14221 14222 14223 14224 14225 14226 14227 14228 14229 |
# File 'lib/aws-sdk-databasemigrationservice/types.rb', line 14203 class TableStatistics < Struct.new( :schema_name, :table_name, :inserts, :deletes, :updates, :ddls, :applied_inserts, :applied_deletes, :applied_updates, :applied_ddls, :full_load_rows, :full_load_condtnl_chk_failed_rows, :full_load_error_rows, :full_load_start_time, :full_load_end_time, :full_load_reloaded, :last_update_time, :table_state, :validation_pending_records, :validation_failed_records, :validation_suspended_records, :validation_state, :validation_state_details) SENSITIVE = [] include Aws::Structure end |
#validation_pending_records ⇒ Integer
The number of records that have yet to be validated.
14203 14204 14205 14206 14207 14208 14209 14210 14211 14212 14213 14214 14215 14216 14217 14218 14219 14220 14221 14222 14223 14224 14225 14226 14227 14228 14229 |
# File 'lib/aws-sdk-databasemigrationservice/types.rb', line 14203 class TableStatistics < Struct.new( :schema_name, :table_name, :inserts, :deletes, :updates, :ddls, :applied_inserts, :applied_deletes, :applied_updates, :applied_ddls, :full_load_rows, :full_load_condtnl_chk_failed_rows, :full_load_error_rows, :full_load_start_time, :full_load_end_time, :full_load_reloaded, :last_update_time, :table_state, :validation_pending_records, :validation_failed_records, :validation_suspended_records, :validation_state, :validation_state_details) SENSITIVE = [] include Aws::Structure end |
#validation_state ⇒ 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.
14203 14204 14205 14206 14207 14208 14209 14210 14211 14212 14213 14214 14215 14216 14217 14218 14219 14220 14221 14222 14223 14224 14225 14226 14227 14228 14229 |
# File 'lib/aws-sdk-databasemigrationservice/types.rb', line 14203 class TableStatistics < Struct.new( :schema_name, :table_name, :inserts, :deletes, :updates, :ddls, :applied_inserts, :applied_deletes, :applied_updates, :applied_ddls, :full_load_rows, :full_load_condtnl_chk_failed_rows, :full_load_error_rows, :full_load_start_time, :full_load_end_time, :full_load_reloaded, :last_update_time, :table_state, :validation_pending_records, :validation_failed_records, :validation_suspended_records, :validation_state, :validation_state_details) SENSITIVE = [] include Aws::Structure end |
#validation_state_details ⇒ String
Additional details about the state of validation.
14203 14204 14205 14206 14207 14208 14209 14210 14211 14212 14213 14214 14215 14216 14217 14218 14219 14220 14221 14222 14223 14224 14225 14226 14227 14228 14229 |
# File 'lib/aws-sdk-databasemigrationservice/types.rb', line 14203 class TableStatistics < Struct.new( :schema_name, :table_name, :inserts, :deletes, :updates, :ddls, :applied_inserts, :applied_deletes, :applied_updates, :applied_ddls, :full_load_rows, :full_load_condtnl_chk_failed_rows, :full_load_error_rows, :full_load_start_time, :full_load_end_time, :full_load_reloaded, :last_update_time, :table_state, :validation_pending_records, :validation_failed_records, :validation_suspended_records, :validation_state, :validation_state_details) SENSITIVE = [] include Aws::Structure end |
#validation_suspended_records ⇒ Integer
The number of records that couldn’t be validated.
14203 14204 14205 14206 14207 14208 14209 14210 14211 14212 14213 14214 14215 14216 14217 14218 14219 14220 14221 14222 14223 14224 14225 14226 14227 14228 14229 |
# File 'lib/aws-sdk-databasemigrationservice/types.rb', line 14203 class TableStatistics < Struct.new( :schema_name, :table_name, :inserts, :deletes, :updates, :ddls, :applied_inserts, :applied_deletes, :applied_updates, :applied_ddls, :full_load_rows, :full_load_condtnl_chk_failed_rows, :full_load_error_rows, :full_load_start_time, :full_load_end_time, :full_load_reloaded, :last_update_time, :table_state, :validation_pending_records, :validation_failed_records, :validation_suspended_records, :validation_state, :validation_state_details) SENSITIVE = [] include Aws::Structure end |