Skip to main content

allowed_node_type_updates

Creates, updates, deletes, gets or lists an allowed_node_type_updates resource.

Overview

Nameallowed_node_type_updates
TypeResource
Idaws.memorydb.allowed_node_type_updates

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
scale_down_node_typesarrayA list node types which you can use to scale down your cluster.
scale_up_node_typesarrayA list node types which you can use to scale up your cluster.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_allowed_node_type_updatesselectregionLists 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.

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

SELECT examples

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
;