Learn R Programming

paws.database (version 0.1.12)

redshift_get_reserved_node_exchange_offerings: Returns an array of DC2 ReservedNodeOfferings that matches the payment type, term, and usage price of the given DC1 reserved node

Description

Returns an array of DC2 ReservedNodeOfferings that matches the payment type, term, and usage price of the given DC1 reserved node.

Usage

redshift_get_reserved_node_exchange_offerings(ReservedNodeId,
  MaxRecords, Marker)

Value

A list with the following syntax:

list(
  Marker = "string",
  ReservedNodeOfferings = list(
    list(
      ReservedNodeOfferingId = "string",
      NodeType = "string",
      Duration = 123,
      FixedPrice = 123.0,
      UsagePrice = 123.0,
      CurrencyCode = "string",
      OfferingType = "string",
      RecurringCharges = list(
        list(
          RecurringChargeAmount = 123.0,
          RecurringChargeFrequency = "string"
        )
      ),
      ReservedNodeOfferingType = "Regular"|"Upgradable"
    )
  )
)

Arguments

ReservedNodeId

[required] A string representing the node identifier for the DC1 Reserved Node to be exchanged.

MaxRecords

An integer setting the maximum number of ReservedNodeOfferings to retrieve.

Marker

A value that indicates the starting point for the next set of ReservedNodeOfferings.

Request syntax

svc$get_reserved_node_exchange_offerings(
  ReservedNodeId = "string",
  MaxRecords = 123,
  Marker = "string"
)