replication_task_assessment_runs
Creates, updates, deletes, gets or lists a replication_task_assessment_runs resource.
Overview
| Name | replication_task_assessment_runs |
| Type | Resource |
| Id | aws.dms.replication_task_assessment_runs |
Fields
The following fields are returned by SELECT queries:
- describe_replication_task_assessment_runs
| Name | Datatype | Description |
|---|---|---|
marker | string | A 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_runs | array | One or more premigration assessment runs as specified by Filters. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_replication_task_assessment_runs | select | region | 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. | |
delete_replication_task_assessment_run | delete | region | 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. |
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_runs
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
- delete_replication_task_assessment_run
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
;