engine_versions
Creates, updates, deletes, gets or lists an engine_versions resource.
Overview
| Name | engine_versions |
| Type | Resource |
| Id | aws.memorydb.engine_versions |
Fields
The following fields are returned by SELECT queries:
- describe_engine_versions
| Name | Datatype | Description |
|---|---|---|
engine | string | The name of the engine for which version information is provided. |
engine_patch_version | string | The patched engine version |
engine_version | string | The engine version |
parameter_group_family | string | Specifies the name of the parameter group family to which the engine default parameters apply. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_engine_versions | select | region | Returns a list of the available Redis OSS engine versions. |
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_engine_versions
Returns a list of the available Redis OSS engine versions.
SELECT
engine,
engine_patch_version,
engine_version,
parameter_group_family
FROM aws.memorydb.engine_versions
WHERE region = '{{ region }}' -- required
;