Skip to main content

reservation_offerings

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

Overview

Namereservation_offerings
TypeResource
Idaws.redshift_serverless.reservation_offerings

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
currency_codestringThe currency code for the offering.
durationintegerThe duration, in seconds, for which the reservation reserves the RPUs.
hourly_chargenumber (double)The rate you are charged for each hour the reservation is active.
offering_idstringThe offering identifier.
offering_typestringDetermines the payment schedule for the reservation. (ALL_UPFRONT, NO_UPFRONT)
upfront_chargenumber (double)The up-front price you are charged for the reservation.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_reservation_offeringselectregionReturns the reservation offering. The offering determines the payment schedule for the reservation.
list_reservation_offeringsselectregionReturns the current reservation offerings in your account.

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

Returns the reservation offering. The offering determines the payment schedule for the reservation.

SELECT
currency_code,
duration,
hourly_charge,
offering_id,
offering_type,
upfront_charge
FROM aws.redshift_serverless.reservation_offerings
WHERE region = '{{ region }}' -- required
;