Skip to content

Get Reservation Offering

redshiftserverless_get_reservation_offering R Documentation

Returns the reservation offering

Description

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

Usage

redshiftserverless_get_reservation_offering(offeringId)

Arguments

offeringId

[required] The identifier for the offering..

Value

A list with the following syntax:

list(
  reservationOffering = list(
    currencyCode = "string",
    duration = 123,
    hourlyCharge = 123.0,
    offeringId = "string",
    offeringType = "ALL_UPFRONT"|"NO_UPFRONT",
    upfrontCharge = 123.0
  )
)

Request syntax

svc$get_reservation_offering(
  offeringId = "string"
)