Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 21 additions & 1 deletion packages/@aws-cdk/aws-neptune-alpha/lib/cluster.ts
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,27 @@ export class EngineVersion {
/**
* Neptune engine version 1.3.4.0
*/
public static readonly V1_3_4_0 = new EngineVersion('1.3.4.0');
public static readonly V1_3_4_0 = new EngineVersion('1.3.4.0');
/**
* Neptune engine version 1.4.0.0
*/
public static readonly V1_4_0_0 = new EngineVersion('1.4.0.0');
/**
* Neptune engine version 1.4.1.0
*/
public static readonly V1_4_1_0 = new EngineVersion('1.4.1.0');
/**
* Neptune engine version 1.4.2.0
*/
public static readonly V1_4_2_0 = new EngineVersion('1.4.2.0');
/**
* Neptune engine version 1.4.3.0
*/
public static readonly V1_4_3_0 = new EngineVersion('1.4.3.0');
/**
* Neptune engine version 1.4.4.0
*/
public static readonly V1_4_4_0 = new EngineVersion('1.4.4.0');

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

/**
* Constructor for specifying a custom engine version
Expand Down
Loading