Skip to content

Purchase Reserved Nodes Offering

memorydb_purchase_reserved_nodes_offering R Documentation

Allows you to purchase a reserved node offering

Description

Allows you to purchase a reserved node offering. Reserved nodes are not eligible for cancellation and are non-refundable.

Usage

memorydb_purchase_reserved_nodes_offering(ReservedNodesOfferingId,
  ReservationId, NodeCount, Tags)

Arguments

ReservedNodesOfferingId

[required] The ID of the reserved node offering to purchase.

ReservationId

A customer-specified identifier to track this reservation.

NodeCount

The number of node instances to reserve.

Tags

A list of tags to be added to this resource. A tag is a key-value pair. A tag key must be accompanied by a tag value, although null is accepted.

Value

A list with the following syntax:

list(
  ReservedNode = list(
    ReservationId = "string",
    ReservedNodesOfferingId = "string",
    NodeType = "string",
    StartTime = as.POSIXct(
      "2015-01-01"
    ),
    Duration = 123,
    FixedPrice = 123.0,
    NodeCount = 123,
    OfferingType = "string",
    State = "string",
    RecurringCharges = list(
      list(
        RecurringChargeAmount = 123.0,
        RecurringChargeFrequency = "string"
      )
    ),
    ARN = "string"
  )
)

Request syntax

svc$purchase_reserved_nodes_offering(
  ReservedNodesOfferingId = "string",
  ReservationId = "string",
  NodeCount = 123,
  Tags = list(
    list(
      Key = "string",
      Value = "string"
    )
  )
)