Skip to content

Commit

Permalink
feat(neptune): add engine version 1.1.0.0 and instance types t4g, r6g
Browse files Browse the repository at this point in the history
  • Loading branch information
jumic committed Nov 23, 2021
1 parent ddf2881 commit e724982
Show file tree
Hide file tree
Showing 2 changed files with 44 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 @@ -50,6 +50,10 @@ export class EngineVersion {
* Neptune engine version 1.0.5.0
*/
public static readonly V1_0_5_0 = new EngineVersion('1.0.5.0');
/**
* Neptune engine version 1.1.0.0
*/
public static readonly V1_1_0_0 = new EngineVersion('1.1.0.0');

/**
* Constructor for specifying a custom engine version
Expand Down
40 changes: 40 additions & 0 deletions packages/@aws-cdk/aws-neptune/lib/instance.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,46 @@ import { IParameterGroup } from './parameter-group';
*/
export class InstanceType {

/**
* db.r6g.large
*/
public static readonly R6G_LARGE = InstanceType.of('db.r6g.large');

/**
* db.r6g.xlarge
*/
public static readonly R6G_XLARGE = InstanceType.of('db.r6g.xlarge');

/**
* db.r6g.2xlarge
*/
public static readonly R6G_2XLARGE = InstanceType.of('db.r6g.2xlarge');

/**
* db.r6g.4xlarge
*/
public static readonly R6G_4XLARGE = InstanceType.of('db.r6g.4xlarge');

/**
* db.r6g.8xlarge
*/
public static readonly R6G_8XLARGE = InstanceType.of('db.r6g.8xlarge');

/**
* db.r6g.12xlarge
*/
public static readonly R6G_12XLARGE = InstanceType.of('db.r6g.12xlarge');

/**
* db.r6g.16xlarge
*/
public static readonly R6G_16XLARGE = InstanceType.of('db.r6g.16xlarge');

/**
* db.t4g.medium
*/
public static readonly T4G_MEDIUM = InstanceType.of('db.t4g.medium');

/**
* db.r5.large
*/
Expand Down

0 comments on commit e724982

Please sign in to comment.