savings_plans_offering_rates
Creates, updates, deletes, gets or lists a savings_plans_offering_rates resource.
Overview
| Name | savings_plans_offering_rates |
| Type | Resource |
| Id | aws.savingsplans.savings_plans_offering_rates |
Fields
The following fields are returned by SELECT queries:
- describe_savings_plans_offering_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>) |
search_results | array | Information about the Savings Plans offering rates. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_savings_plans_offering_rates | select | region | Describes the offering rates for Savings Plans you might want to purchase. |
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_plans_offering_rates
Describes the offering rates for Savings Plans you might want to purchase.
SELECT
next_token,
search_results
FROM aws.savingsplans.savings_plans_offering_rates
WHERE region = '{{ region }}' -- required
;