savings_plan_rates
Creates, updates, deletes, gets or lists a savings_plan_rates resource.
Overview
| Name | savings_plan_rates |
| Type | Resource |
| Id | aws.savingsplans.savings_plan_rates |
Fields
The following fields are returned by SELECT queries:
- describe_savings_plan_rates
| Name | Datatype | Description |
|---|---|---|
next_token | string | The token to use to retrieve the next page of results. This value is null when there are no more results to return. (pattern: <code>^[A-Za-z0-9/=+]+$</code>) |
savings_plan_id | string | The ID of the Savings Plan. |
search_results | array | Information about the Savings Plan rates. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_savings_plan_rates | select | region | Describes the rates for a specific, existing Savings Plan. |
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
- describe_savings_plan_rates
Describes the rates for a specific, existing Savings Plan.
SELECT
next_token,
savings_plan_id,
search_results
FROM aws.savingsplans.savings_plan_rates
WHERE region = '{{ region }}' -- required
;