default_parameters
Creates, updates, deletes, gets or lists a default_parameters resource.
Overview
| Name | default_parameters |
| Type | Resource |
| Id | aws.dax.default_parameters |
Fields
The following fields are returned by SELECT queries:
- describe_default_parameters
| Name | Datatype | Description |
|---|---|---|
allowed_values | string | A range of values within which the parameter can be set. |
change_type | string | The 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_type | string | The data type of the parameter. For example, integer: |
description | string | A description of the parameter |
is_modifiable | string | Whether the customer is allowed to modify the parameter. (TRUE, FALSE, CONDITIONAL) |
node_type_specific_values | array | A list of node types, and specific parameter values for each node. |
parameter_name | string | The name of the parameter. |
parameter_type | string | Determines whether the parameter can be applied to any nodes, or only nodes of a particular type. (DEFAULT, NODE_TYPE_SPECIFIC) |
parameter_value | string | The value for the parameter. |
source | string | How the parameter is defined. For example, system denotes a system-defined parameter. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_default_parameters | select | region | Returns 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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- describe_default_parameters
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
;