Skip to content

Commit

Permalink
feat(rds): support RDS for SQL Server 16.00.4095.4.v1 (#28274)
Browse files Browse the repository at this point in the history
This PR supports RDS for SQL Server 16.00.4095.4.v1.

```
❯ aws rds describe-db-engine-versions     --engine sqlserver-ee --query "DBEngineVersions[?EngineVersion=='16.00.4095.4.v1'].[DBEngineVersionDescription,EngineVersion,DBParameterGroupFamily,MajorEngineVersion,Status]"
[
    [
        "SQL Server 2022 16.00.4095.4.v1",
        "16.00.4095.4.v1",
        "sqlserver-ee-16.0",
        "16.00",
        "available"
    ]
]
```

----

*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
  • Loading branch information
go-to-k committed Dec 6, 2023
1 parent b5a574f commit 7a22501
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions packages/aws-cdk-lib/aws-rds/lib/instance-engine.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1967,6 +1967,8 @@ export class SqlServerEngineVersion {
public static readonly VER_15_00_4335_1_V1 = SqlServerEngineVersion.of('15.00.4335.1.v1', '15.00');
/** Version "16.00.4085.2.v1". */
public static readonly VER_16_00_4085_2_V1 = SqlServerEngineVersion.of('16.00.4085.2.v1', '16.00');
/** Version "16.00.4095.4.v1". */
public static readonly VER_16_00_4095_4_V1 = SqlServerEngineVersion.of('16.00.4095.4.v1', '16.00');

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

0 comments on commit 7a22501

Please sign in to comment.