recommendation_report_details
Creates, updates, deletes, gets or lists a recommendation_report_details resource.
Overview
| Name | recommendation_report_details |
| Type | Resource |
| Id | aws.migrationhubstrategy.recommendation_report_details |
Fields
The following fields are returned by SELECT queries:
- get_recommendation_report_details
| Name | Datatype | Description |
|---|---|---|
id | string | The ID of the recommendation report generation task. See the response of StartRecommendationReportGeneration. (pattern: <code>[0-9a-z-:]+</code>) |
recommendation_report_details | object | Detailed information about the recommendation report. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_recommendation_report_details | select | id, region | Retrieves 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.
| Name | Datatype | Description |
|---|---|---|
id | string | The recommendation report generation task id returned by StartRecommendationReportGeneration. |
region | string | AWS region (default: us-east-1) |
SELECT examples
- get_recommendation_report_details
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
;