reserved_nodes
Creates, updates, deletes, gets or lists a reserved_nodes resource.
Overview
| Name | reserved_nodes |
| Type | Resource |
| Id | aws.memorydb.reserved_nodes |
Fields
The following fields are returned by SELECT queries:
- describe_reserved_nodes
| Name | Datatype | Description |
|---|---|---|
arn | string | The Amazon Resource Name (ARN) of the reserved node. |
duration | integer | The duration of the reservation in seconds. |
fixed_price | number (double) | The fixed price charged for this reserved node. |
node_count | integer | The number of nodes that have been reserved. |
node_type | string | The node type for the reserved nodes. |
offering_type | string | The offering type of this reserved node. |
recurring_charges | array | The recurring price charged to run this reserved node. |
reservation_id | string | A customer-specified identifier to track this reservation. |
reserved_nodes_offering_id | string | The ID of the reserved node offering to purchase. |
start_time | string (date-time) | The time the reservation started. |
state | string | The state of the reserved node. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_reserved_nodes | select | region | Returns 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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- describe_reserved_nodes
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
;