Difference between revisions of "Aws rds describe-db-cluster-parameters"
Jump to navigation
Jump to search
(Created page with "{{lc}} aws rds describe-db-cluster-parameters == See also == * {{AWS RDS}} Category:AWS") |
|||
(5 intermediate revisions by one other user not shown) | |||
Line 1: | Line 1: | ||
{{lc}} | {{lc}} | ||
+ | https://awscli.amazonaws.com/v2/documentation/api/latest/reference/rds/describe-db-cluster-parameters.html | ||
[[aws rds]] describe-db-cluster-parameters | [[aws rds]] describe-db-cluster-parameters | ||
+ | == Official example == | ||
+ | aws rds describe-db-cluster-parameters --db-cluster-parameter-group-name mydbclusterpg | ||
+ | |||
+ | { | ||
+ | "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... | ||
+ | ] | ||
+ | } | ||
+ | |||
+ | == Related == | ||
+ | * <code>[[aws rds create-db-parameter-group]]</code> | ||
+ | * [[Terraform resource: aws db parameter group]] | ||
== See also == | == See also == | ||
− | * {{ | + | * {{aws rds parameter-group}} |
[[Category:AWS]] | [[Category:AWS]] |
Latest revision as of 21:59, 22 September 2022
aws rds describe-db-cluster-parameters
Official example[edit]
aws rds describe-db-cluster-parameters --db-cluster-parameter-group-name mydbclusterpg
{ "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... ] }
Related[edit]
See also[edit]
Advertising: