Skip to content

Commit

Permalink
feat(neptune): add engine version 1.0.5.0 (#16394)
Browse files Browse the repository at this point in the history
Add AWS Neptune engine versions 1.0.5.0.
https://docs.aws.amazon.com/neptune/latest/userguide/engine-releases-1.0.5.0.html

Closes #16388.

Deployment successfully testet:
```ts
new neptune.DatabaseCluster(this, 'Database', {
  vpc,
  instanceType: neptune.InstanceType.T3_MEDIUM,
  engineVersion: neptune.EngineVersion.V1_0_5_0,
});
```


----

*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
  • Loading branch information
jumic authored Sep 10, 2021
1 parent 18aff6b commit deaac4a
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions packages/@aws-cdk/aws-neptune/lib/cluster.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,10 @@ export class EngineVersion {
* Neptune engine version 1.0.4.1
*/
public static readonly V1_0_4_1 = new EngineVersion('1.0.4.1');
/**
* Neptune engine version 1.0.5.0
*/
public static readonly V1_0_5_0 = new EngineVersion('1.0.5.0');

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

0 comments on commit deaac4a

Please sign in to comment.