Skip to main content

savings_plan_purchase_recommendation_details

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

Overview

Namesavings_plan_purchase_recommendation_details
TypeResource
Idaws.ce.savings_plan_purchase_recommendation_details

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
recommendation_detail_dataobjectContains detailed information about a specific Savings Plan recommendation.
recommendation_detail_idstringThe ID that is associated with the Savings Plan recommendation. (pattern: <code>^[\S\s]{8}-[\S\s]{4}-[\S\s]{4}-[\S\s]{4}-[\S\s]{12}$</code>)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_savings_plan_purchase_recommendation_detailsselectregionRetrieves the details for a Savings Plan recommendation. These details include the hourly data-points that construct the cost, coverage, and utilization charts.

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

Retrieves the details for a Savings Plan recommendation. These details include the hourly data-points that construct the cost, coverage, and utilization charts.

SELECT
recommendation_detail_data,
recommendation_detail_id
FROM aws.ce.savings_plan_purchase_recommendation_details
WHERE region = '{{ region }}' -- required
;