HEX
Server: Apache
System: Linux vps-cdc32557.vps.ovh.ca 5.15.0-156-generic #166-Ubuntu SMP Sat Aug 9 00:02:46 UTC 2025 x86_64
User: hanode (1017)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: //lib/python3/dist-packages/awscli/examples/rds/describe-db-cluster-parameters.rst
**Example 1: To describe the parameters in a DB cluster parameter group**

The following ``describe-db-cluster-parameters`` example retrieves details about the parameters in a DB cluster parameter group. ::

    aws rds describe-db-cluster-parameters \
        --db-cluster-parameter-group-name mydbclusterpg

Output::

    {
        "Parameters": [
            {
                "ParameterName": "allow-suspicious-udfs",
                "Description": "Controls whether user-defined functions that have only an xxx symbol for the main function can be loaded",
                "Source": "engine-default",
                "ApplyType": "static",
                "DataType": "boolean",
                "AllowedValues": "0,1",
                "IsModifiable": false,
                "ApplyMethod": "pending-reboot",
                "SupportedEngineModes": [
                    "provisioned"
                ]
            },
            {
                "ParameterName": "aurora_lab_mode",
                "ParameterValue": "0",
                "Description": "Enables new features in the Aurora engine.",
                "Source": "engine-default",
                "ApplyType": "static",
                "DataType": "boolean",
                "AllowedValues": "0,1",
                "IsModifiable": true,
                "ApplyMethod": "pending-reboot",
                "SupportedEngineModes": [
                    "provisioned"
                ]
            },
            ...some output truncated...
        ]
    }

**Example 2: To list only the parameter names in a DB cluster parameter group**

The following ``describe-db-cluster-parameters`` example retrieves only the names of the parameters in a DB cluster parameter group. ::

    aws rds describe-db-cluster-parameters \
        --db-cluster-parameter-group-name default.aurora-mysql5.7 \
        --query 'Parameters[].{ParameterName:ParameterName}'

Output::

    [
        {
            "ParameterName": "allow-suspicious-udfs"
        }, 
        {
            "ParameterName": "aurora_binlog_read_buffer_size"
        }, 
        {
            "ParameterName": "aurora_binlog_replication_max_yield_seconds"
        }, 
        {
            "ParameterName": "aurora_binlog_use_large_read_buffer"
        }, 
        {
            "ParameterName": "aurora_lab_mode"
        }, 

        ...some output truncated...
        }
    ]

**Example 3: To describe only the modifiable parameters in a DB cluster parameter group**

The following ``describe-db-cluster-parameters`` example retrieves the names of only the parameters that you can modify in a DB cluster parameter group. ::

    aws rds describe-db-cluster-parameters \
        --db-cluster-parameter-group-name default.aurora-mysql5.7 \
        --query 'Parameters[].{ParameterName:ParameterName,IsModifiable:IsModifiable} | [?IsModifiable == `true`]'

Output::

    [
        {
            "ParameterName": "aurora_binlog_read_buffer_size", 
            "IsModifiable": true
        }, 
        {
            "ParameterName": "aurora_binlog_replication_max_yield_seconds", 
            "IsModifiable": true
        }, 
        {
            "ParameterName": "aurora_binlog_use_large_read_buffer", 
            "IsModifiable": true
        }, 
        {
            "ParameterName": "aurora_lab_mode", 
            "IsModifiable": true
        }, 

        ...some output truncated...
        }
    ]

**Example 4: To describe only the modifable Boolean parameters in a DB cluster parameter group**

The following ``describe-db-cluster-parameters`` example retrieves the names of only the parameters that you can modify in a DB cluster parameter group and that have a Boolean data type. ::

    aws rds describe-db-cluster-parameters \
        --db-cluster-parameter-group-name default.aurora-mysql5.7 \
        --query 'Parameters[].{ParameterName:ParameterName,DataType:DataType,IsModifiable:IsModifiable} | [?DataType == `boolean`] | [?IsModifiable == `true`]'

Output::

    [
        {
            "DataType": "boolean", 
            "ParameterName": "aurora_binlog_use_large_read_buffer", 
            "IsModifiable": true
        }, 
        {
            "DataType": "boolean", 
            "ParameterName": "aurora_lab_mode", 
            "IsModifiable": true
        }, 
        {
            "DataType": "boolean", 
            "ParameterName": "autocommit", 
            "IsModifiable": true
        }, 
        {
            "DataType": "boolean", 
            "ParameterName": "automatic_sp_privileges", 
            "IsModifiable": true
        }, 
        ...some output truncated...
        }
    ]

For more information, see `Working with DB Parameter Groups and DB Cluster Parameter Groups <https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/USER_WorkingWithParamGroups.html>`__ in the *Amazon Aurora User Guide*.