replication_instance_task_logs
Creates, updates, deletes, gets or lists a replication_instance_task_logs resource.
Overview
| Name | replication_instance_task_logs |
| Type | Resource |
| Id | aws.dms.replication_instance_task_logs |
Fields
The following fields are returned by SELECT queries:
- describe_replication_instance_task_logs
| 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_instance_arn | string | The Amazon Resource Name (ARN) of the replication instance. |
replication_instance_task_logs | array | An 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:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_replication_instance_task_logs | select | region | Returns 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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- describe_replication_instance_task_logs
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
;