service_updates
Creates, updates, deletes, gets or lists a service_updates resource.
Overview
| Name | service_updates |
| Type | Resource |
| Id | aws.memorydb.service_updates |
Fields
The following fields are returned by SELECT queries:
- describe_service_updates
| Name | Datatype | Description |
|---|---|---|
auto_update_start_date | string (date-time) | The date at which the service update will be automatically applied |
cluster_name | string | The name of the cluster to which the service update applies |
description | string | Provides details of the service update |
engine | string | The name of the engine for which a service update is available. |
nodes_updated | string | A list of nodes updated by the service update |
release_date | string (date-time) | The date when the service update is initially available |
service_update_name | string | The unique ID of the service update |
status | string | The status of the service update (available, in-progress, complete, scheduled) |
type | string | Reflects the nature of the service update (security-update) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_service_updates | select | region | Returns details of the service updates. |
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_service_updates
Returns details of the service updates.
SELECT
auto_update_start_date,
cluster_name,
description,
engine,
nodes_updated,
release_date,
service_update_name,
status,
type
FROM aws.memorydb.service_updates
WHERE region = '{{ region }}' -- required
;