HEX
Server: Apache
System: Linux pdx1-shared-a1-38 6.6.104-grsec-jammy+ #3 SMP Tue Sep 16 00:28:11 UTC 2025 x86_64
User: mmickelson (3396398)
PHP: 8.1.31
Disabled: NONE
Upload Files
File: //usr/share/doc/awscli/examples/dax/describe-parameters.rst
**To describe the parameters defined in a DAX parameter group**

The following ``describe-parameters`` example retrieves details about the parameters that are defined in the specified DAX parameter group. ::

    aws dax describe-parameters \
        --parameter-group-name default.dax1.0

Output::

    {
        "Parameters": [
            {
                "ParameterName": "query-ttl-millis",
                "ParameterType": "DEFAULT",
                "ParameterValue": "300000",
                "NodeTypeSpecificValues": [],
                "Description": "Duration in milliseconds for queries to remain cached",
                "Source": "user",
                "DataType": "integer",
                "AllowedValues": "0-",
                "IsModifiable": "TRUE",
                "ChangeType": "IMMEDIATE"
            },
            {
                "ParameterName": "record-ttl-millis",
                "ParameterType": "DEFAULT",
                "ParameterValue": "300000",
                "NodeTypeSpecificValues": [],
                "Description": "Duration in milliseconds for records to remain valid in cache (Default: 0 = infinite)",
                "Source": "user",
                "DataType": "integer",
                "AllowedValues": "0-",
                "IsModifiable": "TRUE",
                "ChangeType": "IMMEDIATE"
            }
        ]
    }

For more information, see `Managing DAX Clusters <https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/DAX.cluster-management.html>`__ in the *Amazon DynamoDB Developer Guide*.