Skip to main content

reserved_nodes

Creates, updates, deletes, gets or lists a reserved_nodes resource.

Overview

Namereserved_nodes
TypeResource
Idaws.memorydb.reserved_nodes

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
arnstringThe Amazon Resource Name (ARN) of the reserved node.
durationintegerThe duration of the reservation in seconds.
fixed_pricenumber (double)The fixed price charged for this reserved node.
node_countintegerThe number of nodes that have been reserved.
node_typestringThe node type for the reserved nodes.
offering_typestringThe offering type of this reserved node.
recurring_chargesarrayThe recurring price charged to run this reserved node.
reservation_idstringA customer-specified identifier to track this reservation.
reserved_nodes_offering_idstringThe ID of the reserved node offering to purchase.
start_timestring (date-time)The time the reservation started.
statestringThe state of the reserved node.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_reserved_nodesselectregionReturns information about reserved nodes for this account, or about a specified reserved node.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

Returns information about reserved nodes for this account, or about a specified reserved node.

SELECT
arn,
duration,
fixed_price,
node_count,
node_type,
offering_type,
recurring_charges,
reservation_id,
reserved_nodes_offering_id,
start_time,
state
FROM aws.memorydb.reserved_nodes
WHERE region = '{{ region }}' -- required
;