Class EngineVersion
A version of an engine - for either a cluster, or instance.
Inheritance
Implements
Namespace: Amazon.CDK.AWS.RDS
Assembly: Amazon.CDK.AWS.RDS.dll
Syntax (csharp)
public class EngineVersion : Object, IEngineVersion
Syntax (vb)
Public Class EngineVersion
Inherits Object
Implements IEngineVersion
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.RDS;
var engineVersion = new EngineVersion {
MajorVersion = "majorVersion",
// the properties below are optional
FullVersion = "fullVersion"
};
Synopsis
Constructors
EngineVersion() |
Properties
FullVersion | The full version string of the engine, for example, "5.6.mysql_aurora.1.22.1". It can be undefined, which means RDS should use whatever version it deems appropriate for the given engine type. |
MajorVersion | The major version of the engine, for example, "5.6". Used in specifying the ParameterGroup family and OptionGroup version for this engine. |
Constructors
EngineVersion()
public EngineVersion()
Properties
FullVersion
The full version string of the engine, for example, "5.6.mysql_aurora.1.22.1". It can be undefined, which means RDS should use whatever version it deems appropriate for the given engine type.
public string FullVersion { get; set; }
Property Value
System.String
Remarks
Default: - no version specified
MajorVersion
The major version of the engine, for example, "5.6". Used in specifying the ParameterGroup family and OptionGroup version for this engine.
public string MajorVersion { get; set; }
Property Value
System.String