Skip to main content

replication_table_statistics

Creates, updates, deletes, gets or lists a replication_table_statistics resource.

Overview

Namereplication_table_statistics
TypeResource
Idaws.dms.replication_table_statistics

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
markerstringAn optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.
replication_config_arnstringThe Amazon Resource Name of the replication config.
replication_table_statisticsarrayReturns table statistics on the replication, including table name, rows inserted, rows updated, and rows deleted.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_replication_table_statisticsselectregionReturns table and schema statistics for one or more provisioned replications that use a given DMS Serverless replication configuration.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

Returns table and schema statistics for one or more provisioned replications that use a given DMS Serverless replication configuration.

SELECT
marker,
replication_config_arn,
replication_table_statistics
FROM aws.dms.replication_table_statistics
WHERE region = '{{ region }}' -- required
;