aws-cdk-lib.aws_rds.AuroraPostgresEngineVersion

class AuroraPostgresEngineVersion

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

The versions for the Aurora PostgreSQL cluster engine (those returned by DatabaseClusterEngine.auroraPostgres).

https://docs.aws.amazon.com/AmazonRDS/latest/AuroraPostgreSQLReleaseNotes/AuroraPostgreSQL.Updates.html

Example

declare const vpc: ec2.Vpc;
const cluster = new rds.DatabaseCluster(this, 'Database', {
  engine: rds.DatabaseClusterEngine.auroraPostgres({ version: rds.AuroraPostgresEngineVersion.VER_15_2 }),
  credentials: rds.Credentials.fromUsername('adminuser', { password: cdk.SecretValue.unsafePlainText('7959866cacc02c2d243ecfe177464fe6') }),
  instanceProps: {
    instanceType: ec2.InstanceType.of(ec2.InstanceClass.X2G, ec2.InstanceSize.XLARGE),
    vpcSubnets: { subnetType: ec2.SubnetType.PUBLIC },
    vpc,
  },
  storageType: rds.DBClusterStorageType.AURORA_IOPT1,
});

Properties

NameTypeDescription
auroraPostgresFullVersionstringThe full version string, for example, "9.6.25.1".
auroraPostgresMajorVersionstringThe major version of the engine, for example, "9.6".
static VER_10_11⚠️AuroraPostgresEngineVersionVersion "10.11".
static VER_10_12⚠️AuroraPostgresEngineVersionVersion "10.12".
static VER_10_13⚠️AuroraPostgresEngineVersionVersion "10.13".
static VER_10_14⚠️AuroraPostgresEngineVersionVersion "10.14".
static VER_10_16AuroraPostgresEngineVersionVersion "10.16".
static VER_10_17AuroraPostgresEngineVersionVersion "10.17".
static VER_10_18AuroraPostgresEngineVersionVersion "10.18".
static VER_10_19AuroraPostgresEngineVersionVersion "10.19".
static VER_10_20AuroraPostgresEngineVersionVersion "10.20".
static VER_10_21AuroraPostgresEngineVersionVersion "10.21".
static VER_10_4⚠️AuroraPostgresEngineVersionVersion "10.4".
static VER_10_5⚠️AuroraPostgresEngineVersionVersion "10.5".
static VER_10_6⚠️AuroraPostgresEngineVersionVersion "10.6".
static VER_10_7⚠️AuroraPostgresEngineVersionVersion "10.7".
static VER_11_11AuroraPostgresEngineVersionVersion "11.11".
static VER_11_12AuroraPostgresEngineVersionVersion "11.12".
static VER_11_13AuroraPostgresEngineVersionVersion "11.13".
static VER_11_14AuroraPostgresEngineVersionVersion "11.14".
static VER_11_15AuroraPostgresEngineVersionVersion "11.15".
static VER_11_16AuroraPostgresEngineVersionVersion "11.16".
static VER_11_17AuroraPostgresEngineVersionVersion "11.17".
static VER_11_18AuroraPostgresEngineVersionVersion "11.18".
static VER_11_19AuroraPostgresEngineVersionVersion "11.19".
static VER_11_4⚠️AuroraPostgresEngineVersionVersion "11.4".
static VER_11_6⚠️AuroraPostgresEngineVersionVersion "11.6".
static VER_11_7⚠️AuroraPostgresEngineVersionVersion "11.7".
static VER_11_8⚠️AuroraPostgresEngineVersionVersion "11.8".
static VER_11_9AuroraPostgresEngineVersionVersion "11.9".
static VER_12_10AuroraPostgresEngineVersionVersion "12.10".
static VER_12_11AuroraPostgresEngineVersionVersion "12.11".
static VER_12_12AuroraPostgresEngineVersionVersion "12.12".
static VER_12_13AuroraPostgresEngineVersionVersion "12.13".
static VER_12_14AuroraPostgresEngineVersionVersion "12.14".
static VER_12_4AuroraPostgresEngineVersionVersion "12.4".
static VER_12_6AuroraPostgresEngineVersionVersion "12.6".
static VER_12_7AuroraPostgresEngineVersionVersion "12.7".
static VER_12_8AuroraPostgresEngineVersionVersion "12.8".
static VER_12_9AuroraPostgresEngineVersionVersion "12.9".
static VER_13_10AuroraPostgresEngineVersionVersion "13.10".
static VER_13_3AuroraPostgresEngineVersionVersion "13.3".
static VER_13_4AuroraPostgresEngineVersionVersion "13.4".
static VER_13_5AuroraPostgresEngineVersionVersion "13.5".
static VER_13_6AuroraPostgresEngineVersionVersion "13.6".
static VER_13_7AuroraPostgresEngineVersionVersion "13.7".
static VER_13_8AuroraPostgresEngineVersionVersion "13.8".
static VER_13_9AuroraPostgresEngineVersionVersion "13.9".
static VER_14_3AuroraPostgresEngineVersionVersion "14.3".
static VER_14_4⚠️AuroraPostgresEngineVersionVersion "14.4".
static VER_14_5AuroraPostgresEngineVersionVersion "14.5".
static VER_14_6AuroraPostgresEngineVersionVersion "14.6".
static VER_14_7AuroraPostgresEngineVersionVersion "14.7".
static VER_15_2AuroraPostgresEngineVersionVersion "15.2".
static VER_9_6_11⚠️AuroraPostgresEngineVersionVersion "9.6.11".
static VER_9_6_12⚠️AuroraPostgresEngineVersionVersion "9.6.12".
static VER_9_6_16⚠️AuroraPostgresEngineVersionVersion "9.6.16".
static VER_9_6_17⚠️AuroraPostgresEngineVersionVersion "9.6.17".
static VER_9_6_18⚠️AuroraPostgresEngineVersionVersion "9.6.18".
static VER_9_6_19⚠️AuroraPostgresEngineVersionVersion "9.6.19".
static VER_9_6_8⚠️AuroraPostgresEngineVersionVersion "9.6.8".
static VER_9_6_9⚠️AuroraPostgresEngineVersionVersion "9.6.9".

auroraPostgresFullVersion

Type: string

The full version string, for example, "9.6.25.1".


auroraPostgresMajorVersion

Type: string

The major version of the engine, for example, "9.6".


static VER_10_11⚠️

⚠️ Deprecated: Version 10.11 is no longer supported by Amazon RDS.

Type: AuroraPostgresEngineVersion

Version "10.11".


static VER_10_12⚠️

⚠️ Deprecated: Version 10.12 is no longer supported by Amazon RDS.

Type: AuroraPostgresEngineVersion

Version "10.12".


static VER_10_13⚠️

⚠️ Deprecated: Version 10.13 is no longer supported by Amazon RDS.

Type: AuroraPostgresEngineVersion

Version "10.13".


static VER_10_14⚠️

⚠️ Deprecated: Version 10.14 is no longer supported by Amazon RDS.

Type: AuroraPostgresEngineVersion

Version "10.14".


static VER_10_16

Type: AuroraPostgresEngineVersion

Version "10.16".


static VER_10_17

Type: AuroraPostgresEngineVersion

Version "10.17".


static VER_10_18

Type: AuroraPostgresEngineVersion

Version "10.18".


static VER_10_19

Type: AuroraPostgresEngineVersion

Version "10.19".


static VER_10_20

Type: AuroraPostgresEngineVersion

Version "10.20".


static VER_10_21

Type: AuroraPostgresEngineVersion

Version "10.21".


static VER_10_4⚠️

⚠️ Deprecated: Version 10.4 is no longer supported by Amazon RDS.

Type: AuroraPostgresEngineVersion

Version "10.4".


static VER_10_5⚠️

⚠️ Deprecated: Version 10.5 is no longer supported by Amazon RDS.

Type: AuroraPostgresEngineVersion

Version "10.5".


static VER_10_6⚠️

⚠️ Deprecated: Version 10.6 is no longer supported by Amazon RDS.

Type: AuroraPostgresEngineVersion

Version "10.6".


static VER_10_7⚠️

⚠️ Deprecated: Version 10.7 is no longer supported by Amazon RDS.

Type: AuroraPostgresEngineVersion

Version "10.7".


static VER_11_11

Type: AuroraPostgresEngineVersion

Version "11.11".


static VER_11_12

Type: AuroraPostgresEngineVersion

Version "11.12".


static VER_11_13

Type: AuroraPostgresEngineVersion

Version "11.13".


static VER_11_14

Type: AuroraPostgresEngineVersion

Version "11.14".


static VER_11_15

Type: AuroraPostgresEngineVersion

Version "11.15".


static VER_11_16

Type: AuroraPostgresEngineVersion

Version "11.16".


static VER_11_17

Type: AuroraPostgresEngineVersion

Version "11.17".


static VER_11_18

Type: AuroraPostgresEngineVersion

Version "11.18".


static VER_11_19

Type: AuroraPostgresEngineVersion

Version "11.19".


static VER_11_4⚠️

⚠️ Deprecated: Version 11.4 is no longer supported by Amazon RDS.

Type: AuroraPostgresEngineVersion

Version "11.4".


static VER_11_6⚠️

⚠️ Deprecated: Version 11.6 is no longer supported by Amazon RDS.

Type: AuroraPostgresEngineVersion

Version "11.6".


static VER_11_7⚠️

⚠️ Deprecated: Version 11.7 is no longer supported by Amazon RDS.

Type: AuroraPostgresEngineVersion

Version "11.7".


static VER_11_8⚠️

⚠️ Deprecated: Version 11.8 is no longer supported by Amazon RDS.

Type: AuroraPostgresEngineVersion

Version "11.8".


static VER_11_9

Type: AuroraPostgresEngineVersion

Version "11.9".


static VER_12_10

Type: AuroraPostgresEngineVersion

Version "12.10".


static VER_12_11

Type: AuroraPostgresEngineVersion

Version "12.11".


static VER_12_12

Type: AuroraPostgresEngineVersion

Version "12.12".


static VER_12_13

Type: AuroraPostgresEngineVersion

Version "12.13".


static VER_12_14

Type: AuroraPostgresEngineVersion

Version "12.14".


static VER_12_4

Type: AuroraPostgresEngineVersion

Version "12.4".


static VER_12_6

Type: AuroraPostgresEngineVersion

Version "12.6".


static VER_12_7

Type: AuroraPostgresEngineVersion

Version "12.7".


static VER_12_8

Type: AuroraPostgresEngineVersion

Version "12.8".


static VER_12_9

Type: AuroraPostgresEngineVersion

Version "12.9".


static VER_13_10

Type: AuroraPostgresEngineVersion

Version "13.10".


static VER_13_3

Type: AuroraPostgresEngineVersion

Version "13.3".


static VER_13_4

Type: AuroraPostgresEngineVersion

Version "13.4".


static VER_13_5

Type: AuroraPostgresEngineVersion

Version "13.5".


static VER_13_6

Type: AuroraPostgresEngineVersion

Version "13.6".


static VER_13_7

Type: AuroraPostgresEngineVersion

Version "13.7".


static VER_13_8

Type: AuroraPostgresEngineVersion

Version "13.8".


static VER_13_9

Type: AuroraPostgresEngineVersion

Version "13.9".


static VER_14_3

Type: AuroraPostgresEngineVersion

Version "14.3".


static VER_14_4⚠️

⚠️ Deprecated: Version 14.4 is no longer supported by Amazon RDS.

Type: AuroraPostgresEngineVersion

Version "14.4".


static VER_14_5

Type: AuroraPostgresEngineVersion

Version "14.5".


static VER_14_6

Type: AuroraPostgresEngineVersion

Version "14.6".


static VER_14_7

Type: AuroraPostgresEngineVersion

Version "14.7".


static VER_15_2

Type: AuroraPostgresEngineVersion

Version "15.2".


static VER_9_6_11⚠️

⚠️ Deprecated: Version 9.6.11 is no longer supported by Amazon RDS.

Type: AuroraPostgresEngineVersion

Version "9.6.11".


static VER_9_6_12⚠️

⚠️ Deprecated: Version 9.6.12 is no longer supported by Amazon RDS.

Type: AuroraPostgresEngineVersion

Version "9.6.12".


static VER_9_6_16⚠️

⚠️ Deprecated: Version 9.6.16 is no longer supported by Amazon RDS.

Type: AuroraPostgresEngineVersion

Version "9.6.16".


static VER_9_6_17⚠️

⚠️ Deprecated: Version 9.6.17 is no longer supported by Amazon RDS.

Type: AuroraPostgresEngineVersion

Version "9.6.17".


static VER_9_6_18⚠️

⚠️ Deprecated: Version 9.6.18 is no longer supported by Amazon RDS.

Type: AuroraPostgresEngineVersion

Version "9.6.18".


static VER_9_6_19⚠️

⚠️ Deprecated: Version 9.6.19 is no longer supported by Amazon RDS.

Type: AuroraPostgresEngineVersion

Version "9.6.19".


static VER_9_6_8⚠️

⚠️ Deprecated: Version 9.6.8 is no longer supported by Amazon RDS.

Type: AuroraPostgresEngineVersion

Version "9.6.8".


static VER_9_6_9⚠️

⚠️ Deprecated: Version 9.6.9 is no longer supported by Amazon RDS.

Type: AuroraPostgresEngineVersion

Version "9.6.9".

Methods

NameDescription
static of(auroraPostgresFullVersion, auroraPostgresMajorVersion, auroraPostgresFeatures?)Create a new AuroraPostgresEngineVersion with an arbitrary version.

static of(auroraPostgresFullVersion, auroraPostgresMajorVersion, auroraPostgresFeatures?)

public static of(auroraPostgresFullVersion: string, auroraPostgresMajorVersion: string, auroraPostgresFeatures?: AuroraPostgresEngineFeatures): AuroraPostgresEngineVersion

Parameters

  • auroraPostgresFullVersion string — the full version string, for example "9.6.25.1".
  • auroraPostgresMajorVersion string — the major version of the engine, for example "9.6".
  • auroraPostgresFeatures AuroraPostgresEngineFeatures

Returns

  • AuroraPostgresEngineVersion

Create a new AuroraPostgresEngineVersion with an arbitrary version.