Skip to main content

engine_default_parameters

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

Overview

Nameengine_default_parameters
TypeResource
Idaws.elasticache.engine_default_parameters

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
cache_node_type_specific_parametersstringA list of parameters specific to a particular cache node type. Each element in the list contains detailed information about one parameter.
cache_parameter_group_familystringSpecifies the name of the cache parameter group family to which the engine default parameters apply. Valid values are: memcached1.4 | memcached1.5 | memcached1.6 | redis2.6 | redis2.8 | redis3.2 | redis4.0 | redis5.0 | redis6.0 | redis6.x | redis7
markerstringProvides an identifier to allow retrieval of paginated results.
parametersstringContains a list of engine default parameters.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_engine_default_parametersselectCacheParameterGroupFamily, regionMaxRecords, MarkerReturns the default engine and system parameter information for the specified cache engine.

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
CacheParameterGroupFamilystringThe name of the cache parameter group family. Valid values are: memcached1.4 | memcached1.5 | memcached1.6 | redis2.6 | redis2.8 | redis3.2 | redis4.0 | redis5.0 | redis6.x | redis6.2 | redis7
regionstringAWS region (default: us-east-1)
MarkerstringAn optional marker returned from a prior request. Use this marker for pagination of results from this operation. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.
MaxRecordsintegerThe maximum number of records to include in the response. If more records exist than the specified MaxRecords value, a marker is included in the response so that the remaining results can be retrieved. Default: 100 Constraints: minimum 20; maximum 100.

SELECT examples

Returns the default engine and system parameter information for the specified cache engine.

SELECT
cache_node_type_specific_parameters,
cache_parameter_group_family,
marker,
parameters
FROM aws.elasticache.engine_default_parameters
WHERE CacheParameterGroupFamily = '{{ CacheParameterGroupFamily }}' -- required
AND region = '{{ region }}' -- required
AND MaxRecords = '{{ MaxRecords }}'
AND Marker = '{{ Marker }}'
;