allowed_node_type_updates
Creates, updates, deletes, gets or lists an allowed_node_type_updates resource.
Overview
| Name | allowed_node_type_updates |
| Type | Resource |
| Id | aws.memorydb.allowed_node_type_updates |
Fields
The following fields are returned by SELECT queries:
- list_allowed_node_type_updates
| Name | Datatype | Description |
|---|---|---|
scale_down_node_types | array | A list node types which you can use to scale down your cluster. |
scale_up_node_types | array | A list node types which you can use to scale up your cluster. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_allowed_node_type_updates | select | region | Lists all available node types that you can scale to from your cluster's current node type. When you use the UpdateCluster operation to scale your cluster, the value of the NodeType parameter must be one of the node types returned by this operation. |
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
- list_allowed_node_type_updates
Lists all available node types that you can scale to from your cluster's current node type. When you use the UpdateCluster operation to scale your cluster, the value of the NodeType parameter must be one of the node types returned by this operation.
SELECT
scale_down_node_types,
scale_up_node_types
FROM aws.memorydb.allowed_node_type_updates
WHERE region = '{{ region }}' -- required
;