interface ParameterGroupProps
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.RDS.ParameterGroupProps |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsrds#ParameterGroupProps |
![]() | software.amazon.awscdk.services.rds.ParameterGroupProps |
![]() | aws_cdk.aws_rds.ParameterGroupProps |
![]() | aws-cdk-lib » 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. |
name? | string | The name of this parameter group. |
parameters? | { [string]: string } | The parameters in this parameter group. |
removal | Removal | The CloudFormation policy to apply when the instance is removed from the stack or replaced during an update. |
engine
Type:
IEngine
The database engine for this parameter group.
description?
Type:
string
(optional, default: a CDK generated description)
Description for this parameter group.
name?
Type:
string
(optional, default: CloudFormation-generated name)
The name of this parameter group.
parameters?
Type:
{ [string]: string }
(optional, default: None)
The parameters in this parameter group.
removalPolicy?
Type:
Removal
(optional, default: RemovalPolicy.DESTROY)
The CloudFormation policy to apply when the instance is removed from the stack or replaced during an update.