Skip to main content

replication_task_assessment_results

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

Overview

Namereplication_task_assessment_results
TypeResource
Idaws.dms.replication_task_assessment_results

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
assessment_resultsstringThe task assessment results in JSON format. The response object only contains this field if you provide DescribeReplicationTaskAssessmentResultsMessage$ReplicationTaskArn in the request.
assessment_results_filestringThe file containing the results of the task assessment.
assessment_statusstringThe status of the task assessment.
replication_task_arnstringThe Amazon Resource Name (ARN) of the replication task.
replication_task_identifierstringThe replication task identifier of the task on which the task assessment was run.
replication_task_last_assessment_datestring (date-time)The date the task assessment was completed.
s3_object_urlstringThe 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:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_replication_task_assessment_resultsselectregionReturns 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.

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

SELECT examples

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
;