interface OptionGroupProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.RDS.OptionGroupProps |
Java | software.amazon.awscdk.services.rds.OptionGroupProps |
Python | aws_cdk.aws_rds.OptionGroupProps |
TypeScript (source) | @aws-cdk/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.

.NET
Java
Python
TypeScript (