replication_table_statistics
Creates, updates, deletes, gets or lists a replication_table_statistics resource.
Overview
| Name | replication_table_statistics |
| Type | Resource |
| Id | aws.dms.replication_table_statistics |
Fields
The following fields are returned by SELECT queries:
- describe_replication_table_statistics
| Name | Datatype | Description |
|---|---|---|
marker | string | An 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_arn | string | The Amazon Resource Name of the replication config. |
replication_table_statistics | array | Returns table statistics on the replication, including table name, rows inserted, rows updated, and rows deleted. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_replication_table_statistics | select | region | Returns 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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- describe_replication_table_statistics
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
;