Skip to main content

replication_task_assessment_runs

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

Overview

Namereplication_task_assessment_runs
TypeResource
Idaws.dms.replication_task_assessment_runs

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
markerstringA pagination token returned for you to pass to a subsequent request. If you pass this token as the Marker value in a subsequent request, the response includes only records beyond the marker, up to the value specified in the request by MaxRecords.
replication_task_assessment_runsarrayOne or more premigration assessment runs as specified by Filters.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_replication_task_assessment_runsselectregionReturns a paginated list of premigration assessment runs based on filter settings. These filter settings can specify a combination of premigration assessment runs, migration tasks, replication instances, and assessment run status values. This operation doesn't return information about individual assessments. For this information, see the DescribeReplicationTaskIndividualAssessments operation.
delete_replication_task_assessment_rundeleteregionDeletes the record of a single premigration assessment run. This operation removes all metadata that DMS maintains about this assessment run. However, the operation leaves untouched all information about this assessment run that is stored in your Amazon S3 bucket.

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 a paginated list of premigration assessment runs based on filter settings. These filter settings can specify a combination of premigration assessment runs, migration tasks, replication instances, and assessment run status values. This operation doesn't return information about individual assessments. For this information, see the DescribeReplicationTaskIndividualAssessments operation.

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

DELETE examples

Deletes the record of a single premigration assessment run. This operation removes all metadata that DMS maintains about this assessment run. However, the operation leaves untouched all information about this assessment run that is stored in your Amazon S3 bucket.

DELETE FROM aws.dms.replication_task_assessment_runs
WHERE region = '{{ region }}' --required
;