Show / Hide Table of Contents

Interface IOptionGroupProps

Construction properties for an OptionGroup.

Namespace: Amazon.CDK.AWS.RDS
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IOptionGroupProps
Syntax (vb)
Public Interface IOptionGroupProps
Remarks

ExampleMetadata: infused

Examples
Vpc vpc;
            SecurityGroup securityGroup;


            new OptionGroup(this, "Options", new OptionGroupProps {
                Engine = DatabaseInstanceEngine.OracleSe2(new OracleSe2InstanceEngineProps {
                    Version = OracleEngineVersion.VER_19
                }),
                Configurations = new [] { new OptionConfiguration {
                    Name = "OEM",
                    Port = 5500,
                    Vpc = vpc,
                    SecurityGroups = new [] { securityGroup }
                } },
                OptionGroupName = "MyOptionGroup"
            });

Synopsis

Properties

Configurations

The configurations for this option group.

Description

A description of the option group.

Engine

The database engine that this option group is associated with.

OptionGroupName

The name of the option group.

Properties

Configurations

The configurations for this option group.

IOptionConfiguration[] Configurations { get; }
Property Value

IOptionConfiguration[]

Remarks

ExampleMetadata: infused

Description

A description of the option group.

string? Description { get; }
Property Value

string

Remarks

Default: a CDK generated description

Engine

The database engine that this option group is associated with.

IInstanceEngine Engine { get; }
Property Value

IInstanceEngine

Remarks

ExampleMetadata: infused

OptionGroupName

The name of the option group.

string? OptionGroupName { get; }
Property Value

string

Remarks

Default: - a CDK generated name

Back to top Generated by DocFX