Skip to content

Commit

Permalink
feat(rds): add SQL Server version 15.00.4043.16.v1 (#10289)
Browse files Browse the repository at this point in the history
Closes #10273

----

*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
  • Loading branch information
abjoshi2785 authored Sep 16, 2020
1 parent 5ad8cdb commit a578ef8
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions packages/@aws-cdk/aws-rds/lib/instance-engine.ts
Original file line number Diff line number Diff line change
Expand Up @@ -876,6 +876,11 @@ export class SqlServerEngineVersion {
/** Version "14.00.3192.2.v1". */
public static readonly VER_14_00_3192_2_V1 = SqlServerEngineVersion.of('14.00.3192.2.v1', '14.00');

/** Version "15.00" (only a major version, without a specific minor version). */
public static readonly VER_15 = SqlServerEngineVersion.of('15.00', '15.00');
/** Version "15.00.4043.16.v1". */
public static readonly VER_15_00_4043_16_V1 = SqlServerEngineVersion.of('15.00.4043.16.v1', '15.00');

/**
* Create a new SqlServerEngineVersion with an arbitrary version.
*
Expand Down

0 comments on commit a578ef8

Please sign in to comment.