engine_default_parameters
Creates, updates, deletes, gets or lists an engine_default_parameters resource.
Overview
| Name | engine_default_parameters |
| Type | Resource |
| Id | aws.elasticache.engine_default_parameters |
Fields
The following fields are returned by SELECT queries:
- describe_engine_default_parameters
| Name | Datatype | Description |
|---|---|---|
cache_node_type_specific_parameters | string | A list of parameters specific to a particular cache node type. Each element in the list contains detailed information about one parameter. |
cache_parameter_group_family | string | Specifies 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 |
marker | string | Provides an identifier to allow retrieval of paginated results. |
parameters | string | Contains a list of engine default parameters. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_engine_default_parameters | select | CacheParameterGroupFamily, region | MaxRecords, Marker | Returns 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.
| Name | Datatype | Description |
|---|---|---|
CacheParameterGroupFamily | string | The 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 |
region | string | AWS region (default: us-east-1) |
Marker | string | An 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. |
MaxRecords | integer | The 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
- describe_engine_default_parameters
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 }}'
;