Skip to content

Commit 5ab8ff8

Browse files
authored
chore(neptune): add engine versions 1.2.0.1 , 1.2.0.2 & 1.2.1.0 (#25209)
Add the following Neptune engine versions: - `1.2.0.1` - https://docs.aws.amazon.com/neptune/latest/userguide/engine-releases-1.2.0.1.html - `1.2.0.2` - https://docs.aws.amazon.com/neptune/latest/userguide/engine-releases-1.2.0.2.html - `1.2.1.0` - https://docs.aws.amazon.com/neptune/latest/userguide/engine-releases-1.2.1.0.html Closes #25208. ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
1 parent 756d029 commit 5ab8ff8

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

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

+12
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,18 @@ export class EngineVersion {
6464
* Neptune engine version 1.2.0.0
6565
*/
6666
public static readonly V1_2_0_0 = new EngineVersion('1.2.0.0');
67+
/**
68+
* Neptune engine version 1.2.0.1
69+
*/
70+
public static readonly V1_2_0_1 = new EngineVersion('1.2.0.1');
71+
/**
72+
* Neptune engine version 1.2.0.2
73+
*/
74+
public static readonly V1_2_0_2 = new EngineVersion('1.2.0.2');
75+
/**
76+
* Neptune engine version 1.2.1.0
77+
*/
78+
public static readonly V1_2_1_0 = new EngineVersion('1.2.1.0');
6779

6880
/**
6981
* Constructor for specifying a custom engine version

0 commit comments

Comments
 (0)