Skip to main content

assessments

Creates, updates, deletes, gets or lists an assessments resource.

Overview

Nameassessments
TypeResource
Idaws.migrationhubstrategy.assessments

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringThe ID for the specific assessment task. (pattern: <code>[0-9a-z-:]+</code>)
assessment_targetsarrayList of criteria for assessment.
data_collection_detailsobjectDetailed information about the assessment.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_assessmentselectid, regionRetrieves the status of an on-going assessment.

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
idstringThe assessmentid returned by StartAssessment.
regionstringAWS region (default: us-east-1)

SELECT examples

Retrieves the status of an on-going assessment.

SELECT
id,
assessment_targets,
data_collection_details
FROM aws.migrationhubstrategy.assessments
WHERE id = '{{ id }}' -- required
AND region = '{{ region }}' -- required
;