Describe Reserved Nodes
| memorydb_describe_reserved_nodes | R Documentation |
Returns information about reserved nodes for this account, or about a specified reserved node¶
Description¶
Returns information about reserved nodes for this account, or about a specified reserved node.
Usage¶
memorydb_describe_reserved_nodes(ReservationId, ReservedNodesOfferingId,
NodeType, Duration, OfferingType, MaxResults, NextToken)
Arguments¶
ReservationIdThe reserved node identifier filter value. Use this parameter to show only the reservation that matches the specified reservation ID.
ReservedNodesOfferingIdThe offering identifier filter value. Use this parameter to show only purchased reservations matching the specified offering identifier.
NodeTypeThe node type filter value. Use this parameter to show only those reservations matching the specified node type. For more information, see Supported node types.
DurationThe duration filter value, specified in years or seconds. Use this parameter to show only reservations for this duration.
OfferingTypeThe offering type filter value. Use this parameter to show only the available offerings matching the specified offering type. Valid values: "All Upfront"|"Partial Upfront"| "No Upfront"
MaxResultsThe maximum number of records to include in the response. If more records exist than the specified MaxRecords value, a marker is included in the response so that the remaining results can be retrieved.
NextTokenAn optional marker returned from a prior request. Use this marker for pagination of results from this operation. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.
Value¶
A list with the following syntax:
list(
NextToken = "string",
ReservedNodes = list(
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"
)
)
)