Interface IAuroraClusterEngineProps
(deprecated) Creation properties of the plain Aurora database cluster engine.
Namespace: Amazon.CDK.AWS.RDS
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
[Obsolete("use `AuroraMysqlClusterEngineProps` instead")]
public interface IAuroraClusterEngineProps
Syntax (vb)
<Obsolete("use `AuroraMysqlClusterEngineProps` instead")>
Public Interface IAuroraClusterEngineProps
Remarks
Used in DatabaseClusterEngine.aurora.
Stability: Deprecated
ExampleMetadata: infused
Examples
Vpc vpc;
new DatabaseClusterFromSnapshot(this, "Database", new DatabaseClusterFromSnapshotProps {
Engine = DatabaseClusterEngine.Aurora(new AuroraClusterEngineProps { Version = AuroraEngineVersion.VER_1_22_2 }),
Writer = ClusterInstance.Provisioned("writer"),
Vpc = vpc,
SnapshotIdentifier = "mySnapshot"
});
Synopsis
Properties
| Version | (deprecated) The version of the Aurora cluster engine. |
Properties
Version
(deprecated) The version of the Aurora cluster engine.
[Obsolete]
AuroraEngineVersion Version { get; }
Property Value
Remarks
Stability: Deprecated