Skip to content

Commit

Permalink
feat(rds): add support for aurora-postgresql 16.3
Browse files Browse the repository at this point in the history
Signed-off-by: Andreas Ulm <andreas.ulm@prisma-capacity.eu>
  • Loading branch information
Andrwe committed Aug 1, 2024
1 parent a737e40 commit 7832567
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions packages/aws-cdk-lib/aws-rds/lib/cluster-engine.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1017,6 +1017,8 @@ export class AuroraPostgresEngineVersion {
public static readonly VER_16_1 = AuroraPostgresEngineVersion.of('16.1', '16', { s3Import: true, s3Export: true });
/** Version "16.2". */
public static readonly VER_16_2 = AuroraPostgresEngineVersion.of('16.2', '16', { s3Import: true, s3Export: true });
/** Version "16.3". */
public static readonly VER_16_3 = AuroraPostgresEngineVersion.of('16.3', '16', { s3Import: true, s3Export: true });

/**
* Create a new AuroraPostgresEngineVersion with an arbitrary version.
Expand Down
2 changes: 2 additions & 0 deletions packages/aws-cdk-lib/aws-rds/test/cluster-engine.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,8 @@ describe('cluster engine', () => {
'aurora-postgresql10');
expect(DatabaseClusterEngine.auroraPostgres({ version: AuroraPostgresEngineVersion.of('14.3', '14') }).parameterGroupFamily).toEqual(
'aurora-postgresql14');
expect(DatabaseClusterEngine.auroraPostgres({ version: AuroraPostgresEngineVersion.of('16.3', '16') }).parameterGroupFamily).toEqual(
'aurora-postgresql16');
});

test('supported log types', () => {
Expand Down

0 comments on commit 7832567

Please sign in to comment.