Interface EngineVersion
- All Superinterfaces:
 software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
 EngineVersion.Jsii$Proxy
@Generated(value="jsii-pacmak/1.116.0 (build 0eddcff)",
           date="2025-10-29T11:15:47.058Z")
@Stability(Stable)
public interface EngineVersion
extends software.amazon.jsii.JsiiSerializable
A version of an engine - for either a cluster, or instance.
 
Example:
 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.rds.*;
 EngineVersion engineVersion = EngineVersion.builder()
         .majorVersion("majorVersion")
         // the properties below are optional
         .fullVersion("fullVersion")
         .build();
 - 
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forEngineVersionstatic final classAn implementation forEngineVersion - 
Method Summary
Modifier and TypeMethodDescriptionstatic EngineVersion.Builderbuilder()default StringThe full version string of the engine, for example, "5.6.mysql_aurora.1.22.1".The major version of the engine, for example, "5.6".Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson 
- 
Method Details
- 
getMajorVersion
The major version of the engine, for example, "5.6". Used in specifying the ParameterGroup family and OptionGroup version for this engine. - 
getFullVersion
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.Default: - no version specified
 - 
builder
- Returns:
 - a 
EngineVersion.BuilderofEngineVersion 
 
 -