aws-cdk-lib.aws_rds.OptionGroupProps

interface OptionGroupProps

LanguageType name
.NETAmazon.CDK.AWS.RDS.OptionGroupProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsrds#OptionGroupProps
Javasoftware.amazon.awscdk.services.rds.OptionGroupProps
Pythonaws_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

NameTypeDescription
configurationsOptionConfiguration[]The configurations for this option group.
engineIInstanceEngineThe database engine that this option group is associated with.
description?stringA description of the option group.

configurations

Type: OptionConfiguration[]

The configurations for this option group.


engine

Type: IInstanceEngine

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.