Describe Reserved Nodes Offerings
| memorydb_describe_reserved_nodes_offerings | R Documentation |
Lists available reserved node offerings¶
Description¶
Lists available reserved node offerings.
Usage¶
memorydb_describe_reserved_nodes_offerings(ReservedNodesOfferingId,
NodeType, Duration, OfferingType, MaxResults, NextToken)
Arguments¶
ReservedNodesOfferingIdThe offering identifier filter value. Use this parameter to show only the available offering that matches the specified reservation identifier.
NodeTypeThe node type for the reserved nodes. For more information, see Supported node types.
DurationDuration filter value, specified in years or seconds. Use this parameter to show only reservations for a given 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",
ReservedNodesOfferings = list(
list(
ReservedNodesOfferingId = "string",
NodeType = "string",
Duration = 123,
FixedPrice = 123.0,
OfferingType = "string",
RecurringCharges = list(
list(
RecurringChargeAmount = 123.0,
RecurringChargeFrequency = "string"
)
)
)
)
)