Skip to main content

engine_default_cluster_parameters

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

Overview

Nameengine_default_cluster_parameters
TypeResource
Idaws.docdb.engine_default_cluster_parameters

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
db_parameter_group_familystringThe name of the cluster parameter group family to return the engine parameter information for.
markerstringAn optional pagination token provided by a previous request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords.
parametersstringThe parameters of a particular cluster parameter group family.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_engine_default_cluster_parametersselectDBParameterGroupFamily, regionFilters, MaxRecords, MarkerReturns the default engine and system parameter information for the cluster database 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
DBParameterGroupFamilystringThe name of the cluster parameter group family to return the engine parameter information for.
regionstringAWS region (default: us-east-1)
FiltersarrayThis parameter is not currently supported.
MarkerstringAn optional pagination token provided by a previous request. 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 pagination token (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 cluster database engine.

SELECT
db_parameter_group_family,
marker,
parameters
FROM aws.docdb.engine_default_cluster_parameters
WHERE DBParameterGroupFamily = '{{ DBParameterGroupFamily }}' -- required
AND region = '{{ region }}' -- required
AND Filters = '{{ Filters }}'
AND MaxRecords = '{{ MaxRecords }}'
AND Marker = '{{ Marker }}'
;