Skip to main content

engine_default_parameters

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

Overview

Nameengine_default_parameters
TypeResource
Idaws.neptune.engine_default_parameters

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
db_parameter_group_familystringSpecifies the name of the DB parameter group family that the engine default parameters apply to.
markerstringAn optional pagination token provided by a previous EngineDefaults request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by MaxRecords .
parametersstringContains a list of engine default parameters.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_engine_default_parametersselectDBParameterGroupFamily, regionFilters, MaxRecords, MarkerReturns the default engine and system parameter information for the specified 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 DB parameter group family.
regionstringAWS region (default: us-east-1)
FiltersarrayNot currently supported.
MarkerstringAn optional pagination token provided by a previous DescribeEngineDefaultParameters 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 called 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 database engine.

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