Private
Server IP : 195.201.23.43  /  Your IP : 3.145.85.212
Web Server : Apache
System : Linux webserver2.vercom.be 5.4.0-192-generic #212-Ubuntu SMP Fri Jul 5 09:47:39 UTC 2024 x86_64
User : kdecoratie ( 1041)
PHP Version : 7.1.33-63+ubuntu20.04.1+deb.sury.org+1
Disable Function : 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,
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : ON  |  Pkexec : ON
Directory :  /lib/python3/dist-packages/awscli/examples/redshift/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME SHELL ]     

Current File : /lib/python3/dist-packages/awscli/examples/redshift/describe-cluster-parameters.rst
Retrieve the Parameters for a Specified Cluster Parameter Group
---------------------------------------------------------------

This example retrieves the parameters for the named parameter group.  By default, the output is in JSON format.

Command::

   aws redshift describe-cluster-parameters --parameter-group-name myclusterparametergroup

Result::

    {
       "Parameters": [
          {
             "Description": "Sets the display format for date and time values.",
             "DataType": "string",
             "IsModifiable": true,
             "Source": "engine-default",
             "ParameterValue": "ISO, MDY",
             "ParameterName": "datestyle"
          },
          {
             "Description": "Sets the number of digits displayed for floating-point values",
             "DataType": "integer",
             "IsModifiable": true,
             "AllowedValues": "-15-2",
             "Source": "engine-default",
             "ParameterValue": "0",
             "ParameterName": "extra_float_digits"
          },
          (...remaining output omitted...)
       ]
    }

You can also obtain the same information in text format using the ``--output text`` option.

Command::

   aws redshift describe-cluster-parameters --parameter-group-name myclusterparametergroup --output text

Result::

    RESPONSEMETADATA	cdac40aa-64cc-11e2-9e70-918437dd236d
    Sets the display format for date and time values.	string	True	engine-default	ISO, MDY	datestyle
    Sets the number of digits displayed for floating-point values	integer	True	-15-2	engine-default	0	extra_float_digits
    This parameter applies a user-defined label to a group of queries that are run during the same session..	string	True	engine-default	default	query_group
    require ssl for all databaseconnections	boolean	True	true,false	engine-default	false	require_ssl
    Sets the schema search order for names that are not schema-qualified.	string	True	engine-default	$user, public	search_path
    Aborts any statement that takes over the specified number of milliseconds.	integer	True	engine-default	0	statement_timeout
    wlm json configuration	string	True	engine-default	\[{"query_concurrency":5}]	wlm_json_configuration


Private