You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat(neptune): add engine version 1.1.0.0 and instance types t4g, r6g (#17669)
Add new instance types general-purpose T4g and memory-optimized R6g (see [announcement](https://aws.amazon.com/about-aws/whats-new/2021/11/aws-graviton2-based-instances-amazon-neptune/)). The specific instance types were copied from the [pricing page](https://aws.amazon.com/de/neptune/pricing/).
Add new Neptune engine version 1.1.0.0 which was part of the announcement, too.
Deployment tested successfully in region us-east-1:
```ts
new neptune.DatabaseCluster(this, 'Database', {
vpc,
instanceType: neptune.InstanceType.T4G_MEDIUM,
engineVersion: neptune.EngineVersion.V1_1_0_0,
});
new neptune.DatabaseCluster(this, 'Database2', {
vpc,
instanceType: neptune.InstanceType.R6G_LARGE,
engineVersion: neptune.EngineVersion.V1_1_0_0,
});
```
----
*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
0 commit comments