Interface IOracleSe2InstanceEngineProps
Properties for Oracle Standard Edition 2 instance engines.
Namespace: Amazon.CDK.AWS.RDS
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IOracleSe2InstanceEngineProps
Syntax (vb)
Public Interface IOracleSe2InstanceEngineProps
Remarks
Used in 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_EGRESS
}
});
Synopsis
Properties
Version | The exact version of the engine to use. |
Properties
Version
The exact version of the engine to use.
OracleEngineVersion Version { get; }
Property Value