Skip to main content

default_parameters

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

Overview

Namedefault_parameters
TypeResource
Idaws.dax.default_parameters

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
allowed_valuesstringA range of values within which the parameter can be set.
change_typestringThe conditions under which changes to this parameter can be applied. For example, requires-reboot indicates that a new value for this parameter will only take effect if a node is rebooted. (IMMEDIATE, REQUIRES_REBOOT)
data_typestringThe data type of the parameter. For example, integer:
descriptionstringA description of the parameter
is_modifiablestringWhether the customer is allowed to modify the parameter. (TRUE, FALSE, CONDITIONAL)
node_type_specific_valuesarrayA list of node types, and specific parameter values for each node.
parameter_namestringThe name of the parameter.
parameter_typestringDetermines whether the parameter can be applied to any nodes, or only nodes of a particular type. (DEFAULT, NODE_TYPE_SPECIFIC)
parameter_valuestringThe value for the parameter.
sourcestringHow the parameter is defined. For example, system denotes a system-defined parameter.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_default_parametersselectregionReturns the default system parameter information for the DAX caching software.

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 the default system parameter information for the DAX caching software.

SELECT
allowed_values,
change_type,
data_type,
description,
is_modifiable,
node_type_specific_values,
parameter_name,
parameter_type,
parameter_value,
source
FROM aws.dax.default_parameters
WHERE region = '{{ region }}' -- required
;