Interface AuroraClusterEngineProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
AuroraClusterEngineProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.103.1 (build bef2dea)",
date="2024-10-05T03:43:49.854Z")
@Stability(Stable)
public interface AuroraClusterEngineProps
extends software.amazon.jsii.JsiiSerializable
Creation properties of the plain Aurora database cluster engine.
Used in DatabaseClusterEngine.aurora
.
Example:
Vpc vpc; DatabaseClusterFromSnapshot.Builder.create(this, "Database") .engine(DatabaseClusterEngine.aurora(AuroraClusterEngineProps.builder().version(AuroraEngineVersion.VER_1_22_2).build())) .writer(ClusterInstance.provisioned("writer")) .vpc(vpc) .snapshotIdentifier("mySnapshot") .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forAuroraClusterEngineProps
static final class
An implementation forAuroraClusterEngineProps
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getVersion
The version of the Aurora cluster engine. -
builder
- Returns:
- a
AuroraClusterEngineProps.Builder
ofAuroraClusterEngineProps
-