Skip to main content

service_updates

Creates, updates, deletes, gets or lists a service_updates resource.

Overview

Nameservice_updates
TypeResource
Idaws.memorydb.service_updates

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
auto_update_start_datestring (date-time)The date at which the service update will be automatically applied
cluster_namestringThe name of the cluster to which the service update applies
descriptionstringProvides details of the service update
enginestringThe name of the engine for which a service update is available.
nodes_updatedstringA list of nodes updated by the service update
release_datestring (date-time)The date when the service update is initially available
service_update_namestringThe unique ID of the service update
statusstringThe status of the service update (available, in-progress, complete, scheduled)
typestringReflects the nature of the service update (security-update)

Methods

The following methods are available for this resource:

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

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

SELECT examples

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
;