Skip to main content

replication_instance_task_logs

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

Overview

Namereplication_instance_task_logs
TypeResource
Idaws.dms.replication_instance_task_logs

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_instance_arnstringThe Amazon Resource Name (ARN) of the replication instance.
replication_instance_task_logsarrayAn array of replication task log metadata. Each member of the array contains the replication task name, ARN, and task log size (in bytes).

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_replication_instance_task_logsselectregionReturns information about the task logs for the specified task.

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 information about the task logs for the specified task.

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