Interface OracleSe2InstanceEngineProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
OracleSe2InstanceEngineProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:49.225Z")
@Stability(Stable)
public interface OracleSe2InstanceEngineProps
extends software.amazon.jsii.JsiiSerializable
Properties for Oracle Standard Edition 2 instance engines.
Used in DatabaseInstanceEngine.oracleSe2
.
Example:
Vpc vpc; DatabaseInstance instance = DatabaseInstance.Builder.create(this, "Instance") .engine(DatabaseInstanceEngine.oracleSe2(OracleSe2InstanceEngineProps.builder().version(OracleEngineVersion.VER_19_0_0_0_2020_04_R1).build())) // 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(SubnetSelection.builder() .subnetType(SubnetType.PRIVATE_WITH_NAT) .build()) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forOracleSe2InstanceEngineProps
static final class
An implementation forOracleSe2InstanceEngineProps
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getVersion
The exact version of the engine to use. -
builder
-