aws-cdk-lib.aws_rds.EngineVersion

interface EngineVersion

LanguageType name
.NETAmazon.CDK.AWS.RDS.EngineVersion
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsrds#EngineVersion
Javasoftware.amazon.awscdk.services.rds.EngineVersion
Pythonaws_cdk.aws_rds.EngineVersion
TypeScript (source)aws-cdk-lib » aws_rds » EngineVersion

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 { aws_rds as rds } from 'aws-cdk-lib';
const engineVersion: rds.EngineVersion = {
  majorVersion: 'majorVersion',

  // the properties below are optional
  fullVersion: 'fullVersion',
};

Properties

NameTypeDescription
majorVersionstringThe major version of the engine, for example, "5.6". Used in specifying the ParameterGroup family and OptionGroup version for this engine.
fullVersion?stringThe 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

Type: string

The major version of the engine, for example, "5.6". Used in specifying the ParameterGroup family and OptionGroup version for this engine.


fullVersion?

Type: string (optional, default: no version specified)

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.