Skip to main content

recommendation_summaries

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

Overview

Namerecommendation_summaries
TypeResource
Idaws.cost_optimization_hub.recommendation_summaries

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
estimated_monthly_savingsnumber (double)The estimated total savings resulting from modifications, on a monthly basis.
groupstringThe grouping of recommendations.
recommendation_countintegerThe total number of instance recommendations.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_recommendation_summariesselectregionReturns a concise representation of savings estimates for resources. Also returns de-duped savings across different types of recommendations. The following filters are not supported for this API: recommendationIds, resourceArns, and resourceIds.

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 concise representation of savings estimates for resources. Also returns de-duped savings across different types of recommendations. The following filters are not supported for this API: recommendationIds, resourceArns, and resourceIds.

SELECT
estimated_monthly_savings,
group,
recommendation_count
FROM aws.cost_optimization_hub.recommendation_summaries
WHERE region = '{{ region }}' -- required
;