interface OptionGroupProps
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.RDS.OptionGroupProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsrds#OptionGroupProps |
Java | software.amazon.awscdk.services.rds.OptionGroupProps |
Python | aws_cdk.aws_rds.OptionGroupProps |
TypeScript (source) | aws-cdk-lib » aws_rds » OptionGroupProps |
Construction properties for an OptionGroup.
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 |
---|---|---|
configurations | Option [] | The configurations for this option group. |
engine | IInstance | The database engine that this option group is associated with. |
description? | string | A description of the option group. |
configurations
Type:
Option
[]
The configurations for this option group.
engine
Type:
IInstance
The database engine that this option group is associated with.
description?
Type:
string
(optional, default: a CDK generated description)
A description of the option group.