Skip to content

Commit c0885a0

Browse files
authored
chore(neptune): support ver 1.4.6.0 and 1.4.6.1 (#35786)
Ref: [Engine releases for Amazon Neptune](https://docs.aws.amazon.com/neptune/latest/userguide/engine-releases.html) ### Checklist - [x] My code adheres to the [CONTRIBUTING GUIDE](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md) and [DESIGN GUIDELINES](https://github.com/aws/aws-cdk/blob/main/docs/DESIGN_GUIDELINES.md) ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
1 parent 79bcba2 commit c0885a0

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

packages/@aws-cdk/aws-neptune-alpha/lib/cluster.ts

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,14 @@ export class EngineVersion {
138138
* Neptune engine version 1.4.5.1
139139
*/
140140
public static readonly V1_4_5_1 = new EngineVersion('1.4.5.1');
141-
141+
/**
142+
* Neptune engine version 1.4.6.0
143+
*/
144+
public static readonly V1_4_6_0 = new EngineVersion('1.4.6.0');
145+
/**
146+
* Neptune engine version 1.4.6.1
147+
*/
148+
public static readonly V1_4_6_1 = new EngineVersion('1.4.6.1');
142149
/**
143150
* Constructor for specifying a custom engine version
144151
* @param version the engine version of Neptune

0 commit comments

Comments
 (0)