Show / Hide Table of Contents

Class OracleSe2InstanceEngineProps

Properties for Oracle Standard Edition 2 instance engines.

Inheritance
System.Object
OracleSe2InstanceEngineProps
Implements
IOracleSe2InstanceEngineProps
Namespace: Amazon.CDK.AWS.RDS
Assembly: Amazon.CDK.AWS.RDS.dll
Syntax (csharp)
public class OracleSe2InstanceEngineProps : Object, IOracleSe2InstanceEngineProps
Syntax (vb)
Public Class OracleSe2InstanceEngineProps
    Inherits Object
    Implements IOracleSe2InstanceEngineProps
Remarks

Used in {@link DatabaseInstanceEngine.oracleSe2}.

ExampleMetadata: infused

Examples
Vpc vpc;

var instance = new DatabaseInstance(this, "Instance", new DatabaseInstanceProps {
    Engine = DatabaseInstanceEngine.OracleSe2(new OracleSe2InstanceEngineProps { Version = OracleEngineVersion.VER_19_0_0_0_2020_04_R1 }),
    // optional, defaults to m5.large
    InstanceType = InstanceType.Of(InstanceClass.BURSTABLE3, InstanceSize.SMALL),
    Credentials = Credentials.FromGeneratedSecret("syscdk"),  // Optional - will default to 'admin' username and generated password
    Vpc = vpc,
    VpcSubnets = new SubnetSelection {
        SubnetType = SubnetType.PRIVATE_WITH_NAT
    }
});

Synopsis

Constructors

OracleSe2InstanceEngineProps()

Properties

Version

The exact version of the engine to use.

Constructors

OracleSe2InstanceEngineProps()

public OracleSe2InstanceEngineProps()

Properties

Version

The exact version of the engine to use.

public OracleEngineVersion Version { get; set; }
Property Value

OracleEngineVersion

Implements

IOracleSe2InstanceEngineProps
Back to top Generated by DocFX