@Generated(value="jsii-pacmak/1.67.0 (build 2c027f5)", date="2022-09-19T20:26:41.499Z") @Stability(value=Stable) public interface OracleSe2InstanceEngineProps extends software.amazon.jsii.JsiiSerializable
Used in {@link 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_EGRESS)
.build())
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
OracleSe2InstanceEngineProps.Builder
A builder for
OracleSe2InstanceEngineProps |
static class |
OracleSe2InstanceEngineProps.Jsii$Proxy
An implementation for
OracleSe2InstanceEngineProps |
| Modifier and Type | Method and Description |
|---|---|
static OracleSe2InstanceEngineProps.Builder |
builder() |
OracleEngineVersion |
getVersion()
The exact version of the engine to use.
|
@Stability(value=Stable) @NotNull OracleEngineVersion getVersion()
@Stability(value=Stable) static OracleSe2InstanceEngineProps.Builder builder()
Copyright © 2022. All rights reserved.