Skip to content

List Reservation Offerings

redshiftserverless_list_reservation_offerings R Documentation

Returns the current reservation offerings in your account

Description

Returns the current reservation offerings in your account.

Usage

redshiftserverless_list_reservation_offerings(maxResults, nextToken)

Arguments

maxResults

The maximum number of items to return for this call. The call also returns a token that you can specify in a subsequent call to get the next set of results.

nextToken

The token for the next set of items to return. (You received this token from a previous call.)

Value

A list with the following syntax:

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

Request syntax

svc$list_reservation_offerings(
  maxResults = 123,
  nextToken = "string"
)