Skip to main content

recommendation_report_details

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

Overview

Namerecommendation_report_details
TypeResource
Idaws.migrationhubstrategy.recommendation_report_details

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringThe ID of the recommendation report generation task. See the response of StartRecommendationReportGeneration. (pattern: <code>[0-9a-z-:]+</code>)
recommendation_report_detailsobjectDetailed information about the recommendation report.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_recommendation_report_detailsselectid, regionRetrieves detailed information about the specified recommendation report.

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 recommendation report generation task id returned by StartRecommendationReportGeneration.
regionstringAWS region (default: us-east-1)

SELECT examples

Retrieves detailed information about the specified recommendation report.

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