class PostgresEngineVersion
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.RDS.PostgresEngineVersion |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsrds#PostgresEngineVersion |
![]() | software.amazon.awscdk.services.rds.PostgresEngineVersion |
![]() | aws_cdk.aws_rds.PostgresEngineVersion |
![]() | aws-cdk-lib » aws_rds » PostgresEngineVersion |
The versions for the PostgreSQL instance engines (those returned by DatabaseInstanceEngine.postgres
).
Example
declare const vpc: ec2.Vpc;
const engine = rds.DatabaseInstanceEngine.postgres({ version: rds.PostgresEngineVersion.VER_16_3 });
const myKey = new kms.Key(this, 'MyKey');
new rds.DatabaseInstance(this, 'InstanceWithCustomizedSecret', {
engine,
vpc,
credentials: rds.Credentials.fromGeneratedSecret('postgres', {
secretName: 'my-cool-name',
encryptionKey: myKey,
excludeCharacters: '!&*^#@()',
replicaRegions: [{ region: 'eu-west-1' }, { region: 'eu-west-2' }],
}),
});
Properties
Name | Type | Description |
---|---|---|
postgres | string | The full version string, for example, "13.11". |
postgres | string | The major version of the engine, for example, "13". |
static VER_10 | Postgres | Version "10" (only a major version, without a specific minor version). |
static VER_10_1 | Postgres | Version "10.1". |
static VER_10_10 | Postgres | Version "10.10". |
static VER_10_11 | Postgres | Version "10.11". |
static VER_10_12 | Postgres | Version "10.12". |
static VER_10_13 | Postgres | Version "10.13". |
static VER_10_14 | Postgres | Version "10.14". |
static VER_10_15 | Postgres | Version "10.15". |
static VER_10_16 | Postgres | Version "10.16". |
static VER_10_17 | Postgres | Version "10.17". |
static VER_10_18 | Postgres | Version "10.18". |
static VER_10_19 | Postgres | Version "10.19". |
static VER_10_20 | Postgres | Version "10.20". |
static VER_10_21 | Postgres | Version "10.21". |
static VER_10_22 | Postgres | Version "10.22". |
static VER_10_23 | Postgres | Version "10.23". |
static VER_10_3 | Postgres | Version "10.3". |
static VER_10_4 | Postgres | Version "10.4". |
static VER_10_5 | Postgres | Version "10.5". |
static VER_10_6 | Postgres | Version "10.6". |
static VER_10_7 | Postgres | Version "10.7". |
static VER_10_9 | Postgres | Version "10.9". |
static VER_11 | Postgres | Version "11" (only a major version, without a specific minor version). |
static VER_11_1 | Postgres | Version "11.1". |
static VER_11_10 | Postgres | Version "11.10". |
static VER_11_11 | Postgres | Version "11.11". |
static VER_11_12 | Postgres | Version "11.12". |
static VER_11_13 | Postgres | Version "11.13". |
static VER_11_14 | Postgres | Version "11.14". |
static VER_11_15 | Postgres | Version "11.15". |
static VER_11_16 | Postgres | Version "11.16". |
static VER_11_17 | Postgres | Version "11.17". |
static VER_11_18 | Postgres | Version "11.18". |
static VER_11_19 | Postgres | Version "11.19". |
static VER_11_2 | Postgres | Version "11.2". |
static VER_11_20 | Postgres | Version "11.20". |
static VER_11_21 | Postgres | Version "11.21". |
static VER_11_22 | Postgres | Version "11.22". |
static VER_11_22_RDS_20240418 | Postgres | Version "11.22-rds.20240418". |
static VER_11_22_RDS_20240509 | Postgres | Version "11.22-rds.20240509". |
static VER_11_22_RDS_20240808 | Postgres | Version "11.22-rds.20240808". |
static VER_11_22_RDS_20241121 | Postgres | Version "11.22-RDS.20241121". |
static VER_11_4 | Postgres | Version "11.4". |
static VER_11_5 | Postgres | Version "11.5". |
static VER_11_6 | Postgres | Version "11.6". |
static VER_11_7 | Postgres | Version "11.7". |
static VER_11_8 | Postgres | Version "11.8". |
static VER_11_9 | Postgres | Version "11.9". |
static VER_12 | Postgres | Version "12" (only a major version, without a specific minor version). |
static VER_12_10 | Postgres | Version "12.10". |
static VER_12_11 | Postgres | Version "12.11". |
static VER_12_12 | Postgres | Version "12.12". |
static VER_12_13 | Postgres | Version "12.13". |
static VER_12_14 | Postgres | Version "12.14". |
static VER_12_15 | Postgres | Version "12.15". |
static VER_12_16 | Postgres | Version "12.16". |
static VER_12_17 | Postgres | Version "12.17". |
static VER_12_18 | Postgres | Version "12.18". |
static VER_12_19 | Postgres | Version "12.19". |
static VER_12_2 | Postgres | Version "12.2". |
static VER_12_20 | Postgres | Version "12.20". |
static VER_12_21 | Postgres | Version "12.21". |
static VER_12_22 | Postgres | Version "12.22". |
static VER_12_3 | Postgres | Version "12.3". |
static VER_12_4 | Postgres | Version "12.4". |
static VER_12_5 | Postgres | Version "12.5". |
static VER_12_6 | Postgres | Version "12.6". |
static VER_12_7 | Postgres | Version "12.7". |
static VER_12_8 | Postgres | Version "12.8". |
static VER_12_9 | Postgres | Version "12.9". |
static VER_13 | Postgres | Version "13" (only a major version, without a specific minor version). |
static VER_13_1 | Postgres | Version "13.1". |
static VER_13_10 | Postgres | Version "13.10". |
static VER_13_11 | Postgres | Version "13.11". |
static VER_13_12 | Postgres | Version "13.12". |
static VER_13_13 | Postgres | Version "13.13". |
static VER_13_14 | Postgres | Version "13.14". |
static VER_13_15 | Postgres | Version "13.15". |
static VER_13_16 | Postgres | Version "13.16". |
static VER_13_17 | Postgres | Version "13.17". |
static VER_13_18 | Postgres | Version "13.18". |
static VER_13_2 | Postgres | Version "13.2". |
static VER_13_3 | Postgres | Version "13.3". |
static VER_13_4 | Postgres | Version "13.4". |
static VER_13_5 | Postgres | Version "13.5". |
static VER_13_6 | Postgres | Version "13.6". |
static VER_13_7 | Postgres | Version "13.7". |
static VER_13_8 | Postgres | Version "13.8". |
static VER_13_9 | Postgres | Version "13.9". |
static VER_14 | Postgres | Version "14" (only a major version, without a specific minor version). |
static VER_14_1 | Postgres | Version "14.1". |
static VER_14_10 | Postgres | Version "14.10". |
static VER_14_11 | Postgres | Version "14.11". |
static VER_14_12 | Postgres | Version "14.12". |
static VER_14_13 | Postgres | Version "14.13". |
static VER_14_14 | Postgres | Version "14.14". |
static VER_14_15 | Postgres | Version "14.15". |
static VER_14_2 | Postgres | Version "14.2". |
static VER_14_3 | Postgres | Version "14.3". |
static VER_14_4 | Postgres | Version "14.4". |
static VER_14_5 | Postgres | Version "14.5". |
static VER_14_6 | Postgres | Version "14.6". |
static VER_14_7 | Postgres | Version "14.7". |
static VER_14_8 | Postgres | Version "14.8". |
static VER_14_9 | Postgres | Version "14.9". |
static VER_15 | Postgres | Version "15" (only a major version, without a specific minor version). |
static VER_15_10 | Postgres | Version "15.10". |
static VER_15_2 | Postgres | Version "15.2". |
static VER_15_3 | Postgres | Version "15.3". |
static VER_15_4 | Postgres | Version "15.4". |
static VER_15_5 | Postgres | Version "15.5". |
static VER_15_6 | Postgres | Version "15.6". |
static VER_15_7 | Postgres | Version "15.7". |
static VER_15_8 | Postgres | Version "15.8". |
static VER_15_9 | Postgres | Version "15.9". |
static VER_16 | Postgres | Version "16" (only a major version, without a specific minor version). |
static VER_16_1 | Postgres | Version "16.1". |
static VER_16_2 | Postgres | Version "16.2". |
static VER_16_3 | Postgres | Version "16.3". |
static VER_16_4 | Postgres | Version "16.4". |
static VER_16_5 | Postgres | Version "16.5". |
static VER_16_6 | Postgres | Version "16.6". |
static VER_17 | Postgres | Version "17" (only a major version, without a specific minor version). |
static VER_17_1 | Postgres | Version "17.1". |
static VER_17_2 | Postgres | Version "17.2". |
static VER_9_6_24 | Postgres | Version "9.6.24". |
postgresFullVersion
Type:
string
The full version string, for example, "13.11".
postgresMajorVersion
Type:
string
The major version of the engine, for example, "13".
static VER_10
⚠️ Deprecated: PostgreSQL 10 is no longer supported by Amazon RDS.
Type:
Postgres
Version "10" (only a major version, without a specific minor version).
static VER_10_1
⚠️ Deprecated: PostgreSQL 10 is no longer supported by Amazon RDS.
Type:
Postgres
Version "10.1".
static VER_10_10
⚠️ Deprecated: PostgreSQL 10.10 is no longer supported by Amazon RDS.
Type:
Postgres
Version "10.10".
static VER_10_11
⚠️ Deprecated: PostgreSQL 10.11 is no longer supported by Amazon RDS.
Type:
Postgres
Version "10.11".
static VER_10_12
⚠️ Deprecated: PostgreSQL 10.12 is no longer supported by Amazon RDS.
Type:
Postgres
Version "10.12".
static VER_10_13
⚠️ Deprecated: PostgreSQL 10.13 is no longer supported by Amazon RDS.
Type:
Postgres
Version "10.13".
static VER_10_14
⚠️ Deprecated: PostgreSQL 10.14 is no longer supported by Amazon RDS.
Type:
Postgres
Version "10.14".
static VER_10_15
⚠️ Deprecated: PostgreSQL 10.15 is no longer supported by Amazon RDS.
Type:
Postgres
Version "10.15".
static VER_10_16
⚠️ Deprecated: PostgreSQL 10.16 is no longer supported by Amazon RDS.
Type:
Postgres
Version "10.16".
static VER_10_17
⚠️ Deprecated: PostgreSQL 10.17 is no longer supported by Amazon RDS.
Type:
Postgres
Version "10.17".
static VER_10_18
⚠️ Deprecated: PostgreSQL 10.18 is no longer supported by Amazon RDS.
Type:
Postgres
Version "10.18".
static VER_10_19
⚠️ Deprecated: PostgreSQL 10.19 is no longer supported by Amazon RDS.
Type:
Postgres
Version "10.19".
static VER_10_20
⚠️ Deprecated: PostgreSQL 10.20 is no longer supported by Amazon RDS.
Type:
Postgres
Version "10.20".
static VER_10_21
⚠️ Deprecated: PostgreSQL 10.21 is no longer supported by Amazon RDS.
Type:
Postgres
Version "10.21".
static VER_10_22
⚠️ Deprecated: PostgreSQL 10.22 is no longer supported by Amazon RDS.
Type:
Postgres
Version "10.22".
static VER_10_23
⚠️ Deprecated: PostgreSQL 10.23 is no longer supported by Amazon RDS.
Type:
Postgres
Version "10.23".
static VER_10_3
⚠️ Deprecated: PostgreSQL 10.3 is no longer supported by Amazon RDS.
Type:
Postgres
Version "10.3".
static VER_10_4
⚠️ Deprecated: PostgreSQL 10.4 is no longer supported by Amazon RDS.
Type:
Postgres
Version "10.4".
static VER_10_5
⚠️ Deprecated: PostgreSQL 10.5 is no longer supported by Amazon RDS.
Type:
Postgres
Version "10.5".
static VER_10_6
⚠️ Deprecated: PostgreSQL 10.6 is no longer supported by Amazon RDS.
Type:
Postgres
Version "10.6".
static VER_10_7
⚠️ Deprecated: PostgreSQL 10.7 is no longer supported by Amazon RDS.
Type:
Postgres
Version "10.7".
static VER_10_9
⚠️ Deprecated: PostgreSQL 10.9 is no longer supported by Amazon RDS.
Type:
Postgres
Version "10.9".
static VER_11
Type:
Postgres
Version "11" (only a major version, without a specific minor version).
static VER_11_1
⚠️ Deprecated: PostgreSQL 11.1 is no longer supported by Amazon RDS.
Type:
Postgres
Version "11.1".
static VER_11_10
⚠️ Deprecated: PostgreSQL 11.10 is no longer supported by Amazon RDS.
Type:
Postgres
Version "11.10".
static VER_11_11
⚠️ Deprecated: PostgreSQL 11.11 is no longer supported by Amazon RDS.
Type:
Postgres
Version "11.11".
static VER_11_12
⚠️ Deprecated: PostgreSQL 11.12 is no longer supported by Amazon RDS.
Type:
Postgres
Version "11.12".
static VER_11_13
⚠️ Deprecated: PostgreSQL 11.13 is no longer supported by Amazon RDS.
Type:
Postgres
Version "11.13".
static VER_11_14
⚠️ Deprecated: PostgreSQL 11.14 is no longer supported by Amazon RDS.
Type:
Postgres
Version "11.14".
static VER_11_15
⚠️ Deprecated: PostgreSQL 11.15 is no longer supported by Amazon RDS.
Type:
Postgres
Version "11.15".
static VER_11_16
⚠️ Deprecated: PostgreSQL 11.16 is no longer supported by Amazon RDS.
Type:
Postgres
Version "11.16".
static VER_11_17
⚠️ Deprecated: PostgreSQL 11.17 is no longer supported by Amazon RDS.
Type:
Postgres
Version "11.17".
static VER_11_18
⚠️ Deprecated: PostgreSQL 11.18 is no longer supported by Amazon RDS.
Type:
Postgres
Version "11.18".
static VER_11_19
⚠️ Deprecated: PostgreSQL 11.19 is no longer supported by Amazon RDS.
Type:
Postgres
Version "11.19".
static VER_11_2
⚠️ Deprecated: PostgreSQL 11.2 is no longer supported by Amazon RDS.
Type:
Postgres
Version "11.2".
static VER_11_20
⚠️ Deprecated: PostgreSQL 11.20 is no longer supported by Amazon RDS.
Type:
Postgres
Version "11.20".
static VER_11_21
⚠️ Deprecated: PostgreSQL 11.21 is no longer supported by Amazon RDS.
Type:
Postgres
Version "11.21".
static VER_11_22
Type:
Postgres
Version "11.22".
static VER_11_22_RDS_20240418
Type:
Postgres
Version "11.22-rds.20240418".
static VER_11_22_RDS_20240509
Type:
Postgres
Version "11.22-rds.20240509".
static VER_11_22_RDS_20240808
Type:
Postgres
Version "11.22-rds.20240808".
static VER_11_22_RDS_20241121
Type:
Postgres
Version "11.22-RDS.20241121".
static VER_11_4
⚠️ Deprecated: PostgreSQL 11.4 is no longer supported by Amazon RDS.
Type:
Postgres
Version "11.4".
static VER_11_5
⚠️ Deprecated: PostgreSQL 11.5 is no longer supported by Amazon RDS.
Type:
Postgres
Version "11.5".
static VER_11_6
⚠️ Deprecated: PostgreSQL 11.6 is no longer supported by Amazon RDS.
Type:
Postgres
Version "11.6".
static VER_11_7
⚠️ Deprecated: PostgreSQL 11.7 is no longer supported by Amazon RDS.
Type:
Postgres
Version "11.7".
static VER_11_8
⚠️ Deprecated: PostgreSQL 11.8 is no longer supported by Amazon RDS.
Type:
Postgres
Version "11.8".
static VER_11_9
⚠️ Deprecated: PostgreSQL 11.9 is no longer supported by Amazon RDS.
Type:
Postgres
Version "11.9".
static VER_12
Type:
Postgres
Version "12" (only a major version, without a specific minor version).
static VER_12_10
⚠️ Deprecated: PostgreSQL 12.10 is no longer supported by Amazon RDS.
Type:
Postgres
Version "12.10".
static VER_12_11
⚠️ Deprecated: PostgreSQL 12.11 is no longer supported by Amazon RDS.
Type:
Postgres
Version "12.11".
static VER_12_12
⚠️ Deprecated: PostgreSQL 12.12 is no longer supported by Amazon RDS.
Type:
Postgres
Version "12.12".
static VER_12_13
⚠️ Deprecated: PostgreSQL 12.13 is no longer supported by Amazon RDS.
Type:
Postgres
Version "12.13".
static VER_12_14
⚠️ Deprecated: PostgreSQL 12.14 is no longer supported by Amazon RDS.
Type:
Postgres
Version "12.14".
static VER_12_15
Type:
Postgres
Version "12.15".
static VER_12_16
Type:
Postgres
Version "12.16".
static VER_12_17
Type:
Postgres
Version "12.17".
static VER_12_18
Type:
Postgres
Version "12.18".
static VER_12_19
Type:
Postgres
Version "12.19".
static VER_12_2
⚠️ Deprecated: PostgreSQL 12.2 is no longer supported by Amazon RDS.
Type:
Postgres
Version "12.2".
static VER_12_20
Type:
Postgres
Version "12.20".
static VER_12_21
Type:
Postgres
Version "12.21".
static VER_12_22
Type:
Postgres
Version "12.22".
static VER_12_3
⚠️ Deprecated: PostgreSQL 12.3 is no longer supported by Amazon RDS.
Type:
Postgres
Version "12.3".
static VER_12_4
⚠️ Deprecated: PostgreSQL 12.4 is no longer supported by Amazon RDS.
Type:
Postgres
Version "12.4".
static VER_12_5
⚠️ Deprecated: PostgreSQL 12.5 is no longer supported by Amazon RDS.
Type:
Postgres
Version "12.5".
static VER_12_6
⚠️ Deprecated: PostgreSQL 12.6 is no longer supported by Amazon RDS.
Type:
Postgres
Version "12.6".
static VER_12_7
⚠️ Deprecated: PostgreSQL 12.7 is no longer supported by Amazon RDS.
Type:
Postgres
Version "12.7".
static VER_12_8
⚠️ Deprecated: PostgreSQL 12.8 is no longer supported by Amazon RDS.
Type:
Postgres
Version "12.8".
static VER_12_9
⚠️ Deprecated: PostgreSQL 12.9 is no longer supported by Amazon RDS.
Type:
Postgres
Version "12.9".
static VER_13
Type:
Postgres
Version "13" (only a major version, without a specific minor version).
static VER_13_1
⚠️ Deprecated: PostgreSQL 13.1 is no longer supported by Amazon RDS.
Type:
Postgres
Version "13.1".
static VER_13_10
⚠️ Deprecated: PostgreSQL 13.10 is no longer supported by Amazon RDS.
Type:
Postgres
Version "13.10".
static VER_13_11
Type:
Postgres
Version "13.11".
static VER_13_12
Type:
Postgres
Version "13.12".
static VER_13_13
Type:
Postgres
Version "13.13".
static VER_13_14
Type:
Postgres
Version "13.14".
static VER_13_15
Type:
Postgres
Version "13.15".
static VER_13_16
Type:
Postgres
Version "13.16".
static VER_13_17
Type:
Postgres
Version "13.17".
static VER_13_18
Type:
Postgres
Version "13.18".
static VER_13_2
⚠️ Deprecated: PostgreSQL 13.2 is no longer supported by Amazon RDS.
Type:
Postgres
Version "13.2".
static VER_13_3
⚠️ Deprecated: PostgreSQL 13.3 is no longer supported by Amazon RDS.
Type:
Postgres
Version "13.3".
static VER_13_4
⚠️ Deprecated: PostgreSQL 13.4 is no longer supported by Amazon RDS.
Type:
Postgres
Version "13.4".
static VER_13_5
⚠️ Deprecated: PostgreSQL 13.5 is no longer supported by Amazon RDS.
Type:
Postgres
Version "13.5".
static VER_13_6
⚠️ Deprecated: PostgreSQL 13.6 is no longer supported by Amazon RDS.
Type:
Postgres
Version "13.6".
static VER_13_7
⚠️ Deprecated: PostgreSQL 13.7 is no longer supported by Amazon RDS.
Type:
Postgres
Version "13.7".
static VER_13_8
⚠️ Deprecated: PostgreSQL 13.8 is no longer supported by Amazon RDS.
Type:
Postgres
Version "13.8".
static VER_13_9
⚠️ Deprecated: PostgreSQL 13.9 is no longer supported by Amazon RDS.
Type:
Postgres
Version "13.9".
static VER_14
Type:
Postgres
Version "14" (only a major version, without a specific minor version).
static VER_14_1
⚠️ Deprecated: PostgreSQL 14.1 is no longer supported by Amazon RDS.
Type:
Postgres
Version "14.1".
static VER_14_10
Type:
Postgres
Version "14.10".
static VER_14_11
Type:
Postgres
Version "14.11".
static VER_14_12
Type:
Postgres
Version "14.12".
static VER_14_13
Type:
Postgres
Version "14.13".
static VER_14_14
Type:
Postgres
Version "14.14".
static VER_14_15
Type:
Postgres
Version "14.15".
static VER_14_2
⚠️ Deprecated: PostgreSQL 14.2 is no longer supported by Amazon RDS.
Type:
Postgres
Version "14.2".
static VER_14_3
⚠️ Deprecated: PostgreSQL 14.3 is no longer supported by Amazon RDS.
Type:
Postgres
Version "14.3".
static VER_14_4
⚠️ Deprecated: PostgreSQL 14.4 is no longer supported by Amazon RDS.
Type:
Postgres
Version "14.4".
static VER_14_5
⚠️ Deprecated: PostgreSQL 14.5 is no longer supported by Amazon RDS.
Type:
Postgres
Version "14.5".
static VER_14_6
⚠️ Deprecated: PostgreSQL 14.6 is no longer supported by Amazon RDS.
Type:
Postgres
Version "14.6".
static VER_14_7
⚠️ Deprecated: PostgreSQL 14.7 is no longer supported by Amazon RDS.
Type:
Postgres
Version "14.7".
static VER_14_8
⚠️ Deprecated: PostgreSQL 14.8 is no longer supported by Amazon RDS.
Type:
Postgres
Version "14.8".
static VER_14_9
Type:
Postgres
Version "14.9".
static VER_15
Type:
Postgres
Version "15" (only a major version, without a specific minor version).
static VER_15_10
Type:
Postgres
Version "15.10".
static VER_15_2
⚠️ Deprecated: PostgreSQL 15.2 is no longer supported by Amazon RDS.
Type:
Postgres
Version "15.2".
static VER_15_3
⚠️ Deprecated: PostgreSQL 15.3 is no longer supported by Amazon RDS.
Type:
Postgres
Version "15.3".
static VER_15_4
Type:
Postgres
Version "15.4".
static VER_15_5
Type:
Postgres
Version "15.5".
static VER_15_6
Type:
Postgres
Version "15.6".
static VER_15_7
Type:
Postgres
Version "15.7".
static VER_15_8
Type:
Postgres
Version "15.8".
static VER_15_9
Type:
Postgres
Version "15.9".
static VER_16
Type:
Postgres
Version "16" (only a major version, without a specific minor version).
static VER_16_1
Type:
Postgres
Version "16.1".
static VER_16_2
Type:
Postgres
Version "16.2".
static VER_16_3
Type:
Postgres
Version "16.3".
static VER_16_4
Type:
Postgres
Version "16.4".
static VER_16_5
Type:
Postgres
Version "16.5".
static VER_16_6
Type:
Postgres
Version "16.6".
static VER_17
Type:
Postgres
Version "17" (only a major version, without a specific minor version).
static VER_17_1
Type:
Postgres
Version "17.1".
static VER_17_2
Type:
Postgres
Version "17.2".
static VER_9_6_24
⚠️ Deprecated: PostgreSQL 9.6 is no longer supported by Amazon RDS.
Type:
Postgres
Version "9.6.24".
Methods
Name | Description |
---|---|
static of(postgresFullVersion, postgresMajorVersion, postgresFeatures?) | Create a new PostgresEngineVersion with an arbitrary version. |
static of(postgresFullVersion, postgresMajorVersion, postgresFeatures?)
public static of(postgresFullVersion: string, postgresMajorVersion: string, postgresFeatures?: PostgresEngineFeatures): PostgresEngineVersion
Parameters
- postgresFullVersion
string
— the full version string, for example "13.11". - postgresMajorVersion
string
— the major version of the engine, for example "13". - postgresFeatures
Postgres
Engine Features
Returns
Create a new PostgresEngineVersion with an arbitrary version.