- Navigation GuideYou are on a Command (operation) page with structural examples. Use the navigation breadcrumb if you would like to return to the Client landing page.
DescribeDBClusterParametersCommand
Returns the detailed parameter list for a particular DB cluster parameter group.
For more information on Amazon Aurora, see What is Amazon Aurora? in the Amazon Aurora User Guide.
For more information on Multi-AZ DB clusters, see Multi-AZ DB cluster deployments in the Amazon RDS User Guide.
Example Syntax
Use a bare-bones client and the command you need to make an API call.
import { RDSClient, DescribeDBClusterParametersCommand } from "@aws-sdk/client-rds"; // ES Modules import
// const { RDSClient, DescribeDBClusterParametersCommand } = require("@aws-sdk/client-rds"); // CommonJS import
const client = new RDSClient(config);
const input = { // DescribeDBClusterParametersMessage
DBClusterParameterGroupName: "STRING_VALUE", // required
Source: "STRING_VALUE",
Filters: [ // FilterList
{ // Filter
Name: "STRING_VALUE", // required
Values: [ // FilterValueList // required
"STRING_VALUE",
],
},
],
MaxRecords: Number("int"),
Marker: "STRING_VALUE",
};
const command = new DescribeDBClusterParametersCommand(input);
const response = await client.send(command);
// { // DBClusterParameterGroupDetails
// Parameters: [ // ParametersList
// { // Parameter
// ParameterName: "STRING_VALUE",
// ParameterValue: "STRING_VALUE",
// Description: "STRING_VALUE",
// Source: "STRING_VALUE",
// ApplyType: "STRING_VALUE",
// DataType: "STRING_VALUE",
// AllowedValues: "STRING_VALUE",
// IsModifiable: true || false,
// MinimumEngineVersion: "STRING_VALUE",
// ApplyMethod: "immediate" || "pending-reboot",
// SupportedEngineModes: [ // EngineModeList
// "STRING_VALUE",
// ],
// },
// ],
// Marker: "STRING_VALUE",
// };
Example Usage
DescribeDBClusterParametersCommand Input
Parameter | Type | Description |
---|
Parameter | Type | Description |
---|---|---|
DBClusterParameterGroupName Required | string | undefined | The name of a specific DB cluster parameter group to return parameter details for. Constraints:
|
Filters | Filter[] | undefined | A filter that specifies one or more DB cluster parameters to describe. The only supported filter is |
Marker | string | undefined | An optional pagination token provided by a previous |
MaxRecords | number | undefined | The maximum number of records to include in the response. If more records exist than the specified Default: 100 Constraints: Minimum 20, maximum 100. |
Source | string | undefined | A specific source to return parameters for. Valid Values:
|
DescribeDBClusterParametersCommand Output
Parameter | Type | Description |
---|
Parameter | Type | Description |
---|---|---|
$metadata Required | ResponseMetadata | Metadata pertaining to this request. |
Marker | string | undefined | An optional pagination token provided by a previous |
Parameters | Parameter[] | undefined | Provides a list of parameters for the DB cluster parameter group. |
Throws
Name | Fault | Details |
---|
Name | Fault | Details |
---|---|---|
DBParameterGroupNotFoundFault | client | |
RDSServiceException | Base exception class for all service exceptions from RDS service. |