Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(neptune): add engine version 1.1.0.0 and instance types t4g, r6g #17669

Merged
merged 2 commits into from
Nov 30, 2021
Merged
Show file tree
Hide file tree
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
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