Skip to content

Accept Reserved Node Exchange

redshift_accept_reserved_node_exchange R Documentation

Exchanges a DC1 Reserved Node for a DC2 Reserved Node with no changes to the configuration (term, payment type, or number of nodes) and no additional costs

Description

Exchanges a DC1 Reserved Node for a DC2 Reserved Node with no changes to the configuration (term, payment type, or number of nodes) and no additional costs.

Usage

redshift_accept_reserved_node_exchange(ReservedNodeId,
  TargetReservedNodeOfferingId)

Arguments

ReservedNodeId

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

TargetReservedNodeOfferingId

[required] The unique identifier of the DC2 Reserved Node offering to be used for the exchange. You can obtain the value for the parameter by calling get_reserved_node_exchange_offerings

Value

A list with the following syntax:

list(
  ExchangedReservedNode = list(
    ReservedNodeId = "string",
    ReservedNodeOfferingId = "string",
    NodeType = "string",
    StartTime = as.POSIXct(
      "2015-01-01"
    ),
    Duration = 123,
    FixedPrice = 123.0,
    UsagePrice = 123.0,
    CurrencyCode = "string",
    NodeCount = 123,
    State = "string",
    OfferingType = "string",
    RecurringCharges = list(
      list(
        RecurringChargeAmount = 123.0,
        RecurringChargeFrequency = "string"
      )
    ),
    ReservedNodeOfferingType = "Regular"|"Upgradable"
  )
)

Request syntax

svc$accept_reserved_node_exchange(
  ReservedNodeId = "string",
  TargetReservedNodeOfferingId = "string"
)