Interface AuroraClusterEngineProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
AuroraClusterEngineProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:48.882Z")
@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()))
.instanceProps(InstanceProps.builder()
.vpc(vpc)
.build())
.snapshotIdentifier("mySnapshot")
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forAuroraClusterEnginePropsstatic final classAn 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.BuilderofAuroraClusterEngineProps
-