Skip to main content

savings_plan_rates

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

Overview

Namesavings_plan_rates
TypeResource
Idaws.savingsplans.savings_plan_rates

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
next_tokenstringThe 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_idstringThe ID of the Savings Plan.
search_resultsarrayInformation about the Savings Plan rates.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_savings_plan_ratesselectregionDescribes 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.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

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
;