replication_task_assessment_results
Creates, updates, deletes, gets or lists a replication_task_assessment_results resource.
Overview
| Name | replication_task_assessment_results |
| Type | Resource |
| Id | aws.dms.replication_task_assessment_results |
Fields
The following fields are returned by SELECT queries:
- describe_replication_task_assessment_results
| Name | Datatype | Description |
|---|---|---|
assessment_results | string | The task assessment results in JSON format. The response object only contains this field if you provide DescribeReplicationTaskAssessmentResultsMessage$ReplicationTaskArn in the request. |
assessment_results_file | string | The file containing the results of the task assessment. |
assessment_status | string | The status of the task assessment. |
replication_task_arn | string | The Amazon Resource Name (ARN) of the replication task. |
replication_task_identifier | string | The replication task identifier of the task on which the task assessment was run. |
replication_task_last_assessment_date | string (date-time) | The date the task assessment was completed. |
s3_object_url | string | The URL of the S3 object containing the task assessment results. The response object only contains this field if you provide DescribeReplicationTaskAssessmentResultsMessage$ReplicationTaskArn in the request. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_replication_task_assessment_results | select | region | Returns the task assessment results from the Amazon S3 bucket that DMS creates in your Amazon Web Services account. This action always returns the latest results. For more information about DMS task assessments, see Creating a task assessment report in the Database Migration Service User Guide. |
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_task_assessment_results
Returns the task assessment results from the Amazon S3 bucket that DMS creates in your Amazon Web Services account. This action always returns the latest results. For more information about DMS task assessments, see Creating a task assessment report in the Database Migration Service User Guide.
SELECT
assessment_results,
assessment_results_file,
assessment_status,
replication_task_arn,
replication_task_identifier,
replication_task_last_assessment_date,
s3_object_url
FROM aws.dms.replication_task_assessment_results
WHERE region = '{{ region }}' -- required
;