Skip to content

Commit

Permalink
chore(rds): deprecate SqlServerEngineVersion VER_14_00_3192_2_V1 (aws…
Browse files Browse the repository at this point in the history
…#18476)

SqlServerEngineVersion VER_14_00_3192_2_V1 is not supported anymore. This pull request deprecates the field. 

Closes aws#17394 


----

*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
  • Loading branch information
alina144 authored and TikiTDO committed Feb 21, 2022
1 parent c9bd5ea commit f49bcf3
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/@aws-cdk/aws-rds/lib/instance-engine.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1392,7 +1392,10 @@ export class SqlServerEngineVersion {
public static readonly VER_14_00_3035_2_V1 = SqlServerEngineVersion.of('14.00.3035.2.v1', '14.00');
/** Version "14.00.3049.1.v1". */
public static readonly VER_14_00_3049_1_V1 = SqlServerEngineVersion.of('14.00.3049.1.v1', '14.00');
/** Version "14.00.3192.2.v1". */
/**
* Version "14.00.3192.2.v1".
* @deprecated SQL Server version 14.00.3192.2.v1 reached end of life
*/
public static readonly VER_14_00_3192_2_V1 = SqlServerEngineVersion.of('14.00.3192.2.v1', '14.00');
/** Version "14.00.3223.3.v1". */
public static readonly VER_14_00_3223_3_V1 = SqlServerEngineVersion.of('14.00.3223.3.v1', '14.00');
Expand Down

0 comments on commit f49bcf3

Please sign in to comment.