Class AuroraEngineVersion
java.lang.Object
software.amazon.jsii.JsiiObject
software.amazon.awscdk.services.rds.AuroraEngineVersion
- All Implemented Interfaces:
software.amazon.jsii.JsiiSerializable
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2025-01-15T21:09:25.774Z")
@Stability(Deprecated)
@Deprecated
public class AuroraEngineVersion
extends software.amazon.jsii.JsiiObject
Deprecated.
(deprecated) The versions for the Aurora cluster engine (those returned by
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
Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationMode
-
Field Summary
Modifier and TypeFieldDescriptionstatic final AuroraEngineVersion
Deprecated.static final AuroraEngineVersion
Deprecated.static final AuroraEngineVersion
Deprecated.static final AuroraEngineVersion
Deprecated.static final AuroraEngineVersion
Deprecated.static final AuroraEngineVersion
Deprecated.static final AuroraEngineVersion
Deprecated.static final AuroraEngineVersion
Deprecated.static final AuroraEngineVersion
Deprecated.static final AuroraEngineVersion
Deprecated.static final AuroraEngineVersion
Deprecated.static final AuroraEngineVersion
Deprecated.static final AuroraEngineVersion
Deprecated.static final AuroraEngineVersion
Deprecated.static final AuroraEngineVersion
Deprecated.static final AuroraEngineVersion
Deprecated.static final AuroraEngineVersion
Deprecated.static final AuroraEngineVersion
Deprecated.static final AuroraEngineVersion
Deprecated.static final AuroraEngineVersion
Deprecated.static final AuroraEngineVersion
Deprecated.static final AuroraEngineVersion
Deprecated. -
Constructor Summary
ModifierConstructorDescriptionprotected
AuroraEngineVersion
(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) Deprecated.protected
AuroraEngineVersion
(software.amazon.jsii.JsiiObjectRef objRef) Deprecated. -
Method Summary
Modifier and TypeMethodDescriptionDeprecated.Deprecated.static AuroraEngineVersion
Deprecated.static AuroraEngineVersion
Deprecated.Methods inherited from class software.amazon.jsii.JsiiObject
jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSet
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Field Details
-
VER_1_17_9
Deprecated.(deprecated) Version "5.6.mysql_aurora.1.17.9". -
VER_1_19_0
Deprecated.(deprecated) Version "5.6.mysql_aurora.1.19.0". -
VER_1_19_1
Deprecated.(deprecated) Version "5.6.mysql_aurora.1.19.1". -
VER_1_19_2
Deprecated.(deprecated) Version "5.6.mysql_aurora.1.19.2". -
VER_1_19_5
Deprecated.(deprecated) Version "5.6.mysql_aurora.1.19.5". -
VER_1_19_6
Deprecated.(deprecated) Version "5.6.mysql_aurora.1.19.6". -
VER_1_20_0
Deprecated.(deprecated) Version "5.6.mysql_aurora.1.20.0". -
VER_1_20_1
Deprecated.(deprecated) Version "5.6.mysql_aurora.1.20.1". -
VER_1_21_0
Deprecated.(deprecated) Version "5.6.mysql_aurora.1.21.0". -
VER_1_22_0
Deprecated.(deprecated) Version "5.6.mysql_aurora.1.22.0". -
VER_1_22_1
Deprecated.(deprecated) Version "5.6.mysql_aurora.1.22.1". -
VER_1_22_1_3
Deprecated.(deprecated) Version "5.6.mysql_aurora.1.22.1.3". -
VER_1_22_2
Deprecated.(deprecated) Version "5.6.mysql_aurora.1.22.2". -
VER_1_22_3
Deprecated.(deprecated) Version "5.6.mysql_aurora.1.22.3". -
VER_1_22_4
Deprecated.(deprecated) Version "5.6.mysql_aurora.1.22.4". -
VER_1_22_5
Deprecated.(deprecated) Version "5.6.mysql_aurora.1.22.5". -
VER_1_23_0
Deprecated.(deprecated) Version "5.6.mysql_aurora.1.23.0". -
VER_1_23_1
Deprecated.(deprecated) Version "5.6.mysql_aurora.1.23.1". -
VER_1_23_2
Deprecated.(deprecated) Version "5.6.mysql_aurora.1.23.2". -
VER_1_23_3
Deprecated.(deprecated) Version "5.6.mysql_aurora.1.23.3". -
VER_1_23_4
Deprecated.(deprecated) Version "5.6.mysql_aurora.1.23.4". -
VER_10_A
Deprecated.(deprecated) Version "5.6.10a".
-
-
Constructor Details
-
AuroraEngineVersion
protected AuroraEngineVersion(software.amazon.jsii.JsiiObjectRef objRef) Deprecated. -
AuroraEngineVersion
protected AuroraEngineVersion(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) Deprecated.
-
-
Method Details
-
of
@Stability(Deprecated) @Deprecated @NotNull public static AuroraEngineVersion of(@NotNull String auroraFullVersion, @Nullable String auroraMajorVersion) Deprecated.(deprecated) Create a new AuroraEngineVersion with an arbitrary version.- Parameters:
auroraFullVersion
- the full version string, for example "5.6.mysql_aurora.1.78.3.6". This parameter is required.auroraMajorVersion
- the major version of the engine, defaults to "5.6".
-
of
@Stability(Deprecated) @Deprecated @NotNull public static AuroraEngineVersion of(@NotNull String auroraFullVersion) Deprecated.(deprecated) Create a new AuroraEngineVersion with an arbitrary version.- Parameters:
auroraFullVersion
- the full version string, for example "5.6.mysql_aurora.1.78.3.6". This parameter is required.
-
getAuroraFullVersion
Deprecated.(deprecated) The full version string, for example, "5.6.mysql_aurora.1.78.3.6". -
getAuroraMajorVersion
Deprecated.(deprecated) The major version of the engine.Currently, it's always "5.6".
-
AuroraMysqlEngineVersion
instead