savings_plan_purchase_recommendation_details
Creates, updates, deletes, gets or lists a savings_plan_purchase_recommendation_details resource.
Overview
| Name | savings_plan_purchase_recommendation_details |
| Type | Resource |
| Id | aws.ce.savings_plan_purchase_recommendation_details |
Fields
The following fields are returned by SELECT queries:
- get_savings_plan_purchase_recommendation_details
| Name | Datatype | Description |
|---|---|---|
recommendation_detail_data | object | Contains detailed information about a specific Savings Plan recommendation. |
recommendation_detail_id | string | The 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:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_savings_plan_purchase_recommendation_details | select | region | Retrieves 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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- get_savings_plan_purchase_recommendation_details
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
;