interface ParameterGroupProps
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.RDS.ParameterGroupProps |
Java | software.amazon.awscdk.services.rds.ParameterGroupProps |
Python | aws_cdk.aws_rds.ParameterGroupProps |
TypeScript (source) | @aws-cdk/aws-rds » ParameterGroupProps |
Properties for a parameter group.
Example
// Set open cursors with parameter group
const parameterGroup = new rds.ParameterGroup(this, 'ParameterGroup', {
engine: rds.DatabaseInstanceEngine.oracleSe2({ version: rds.OracleEngineVersion.VER_19_0_0_0_2020_04_R1 }),
parameters: {
open_cursors: '2500',
},
});
Properties
Name | Type | Description |
---|---|---|
engine | IEngine | The database engine for this parameter group. |
description? | string | Description for this parameter group. |
parameters? | { [string]: string } | The parameters in this parameter group. |
engine
Type:
IEngine
The database engine for this parameter group.
description?
Type:
string
(optional, default: a CDK generated description)
Description for this parameter group.
parameters?
Type:
{ [string]: string }
(optional, default: None)
The parameters in this parameter group.