@aws-cdk_aws-neptune-alpha.InstanceType

class InstanceType ๐Ÿ”น

LanguageType name
.NETAmazon.CDK.AWS.Neptune.Alpha.InstanceType
Gogithub.com/aws/aws-cdk-go/awscdkneptunealpha/v2#InstanceType
Javasoftware.amazon.awscdk.services.neptune.alpha.InstanceType
Pythonaws_cdk.aws_neptune_alpha.InstanceType
TypeScript (source)@aws-cdk/aws-neptune-alpha ยป InstanceType

Possible Instances Types to use in Neptune cluster used for defining DatabaseInstanceProps.instanceType.

Example

const cluster = new neptune.DatabaseCluster(this, 'Database', {
  vpc,
  instanceType: neptune.InstanceType.R5_LARGE,
  instances: 2,
});

Properties

NameTypeDescription
static R4_2XLARGE๐Ÿ”นInstanceTypedb.r4.2xlarge.
static R4_4XLARGE๐Ÿ”นInstanceTypedb.r4.4xlarge.
static R4_8XLARGE๐Ÿ”นInstanceTypedb.r4.8xlarge.
static R4_LARGE๐Ÿ”นInstanceTypedb.r4.large.
static R4_XLARGE๐Ÿ”นInstanceTypedb.r4.xlarge.
static R5_12XLARGE๐Ÿ”นInstanceTypedb.r5.12xlarge.
static R5_24XLARGE๐Ÿ”นInstanceTypedb.r5.24xlarge.
static R5_2XLARGE๐Ÿ”นInstanceTypedb.r5.2xlarge.
static R5_4XLARGE๐Ÿ”นInstanceTypedb.r5.4xlarge.
static R5_8XLARGE๐Ÿ”นInstanceTypedb.r5.8xlarge.
static R5_LARGE๐Ÿ”นInstanceTypedb.r5.large.
static R5_XLARGE๐Ÿ”นInstanceTypedb.r5.xlarge.
static R6G_12XLARGE๐Ÿ”นInstanceTypedb.r6g.12xlarge.
static R6G_16XLARGE๐Ÿ”นInstanceTypedb.r6g.16xlarge.
static R6G_2XLARGE๐Ÿ”นInstanceTypedb.r6g.2xlarge.
static R6G_4XLARGE๐Ÿ”นInstanceTypedb.r6g.4xlarge.
static R6G_8XLARGE๐Ÿ”นInstanceTypedb.r6g.8xlarge.
static R6G_LARGE๐Ÿ”นInstanceTypedb.r6g.large.
static R6G_XLARGE๐Ÿ”นInstanceTypedb.r6g.xlarge.
static T3_MEDIUM๐Ÿ”นInstanceTypedb.t3.medium.
static T4G_MEDIUM๐Ÿ”นInstanceTypedb.t4g.medium.

static R4_2XLARGE๐Ÿ”น

Type: InstanceType

db.r4.2xlarge.


static R4_4XLARGE๐Ÿ”น

Type: InstanceType

db.r4.4xlarge.


static R4_8XLARGE๐Ÿ”น

Type: InstanceType

db.r4.8xlarge.


static R4_LARGE๐Ÿ”น

Type: InstanceType

db.r4.large.


static R4_XLARGE๐Ÿ”น

Type: InstanceType

db.r4.xlarge.


static R5_12XLARGE๐Ÿ”น

Type: InstanceType

db.r5.12xlarge.


static R5_24XLARGE๐Ÿ”น

Type: InstanceType

db.r5.24xlarge.


static R5_2XLARGE๐Ÿ”น

Type: InstanceType

db.r5.2xlarge.


static R5_4XLARGE๐Ÿ”น

Type: InstanceType

db.r5.4xlarge.


static R5_8XLARGE๐Ÿ”น

Type: InstanceType

db.r5.8xlarge.


static R5_LARGE๐Ÿ”น

Type: InstanceType

db.r5.large.


static R5_XLARGE๐Ÿ”น

Type: InstanceType

db.r5.xlarge.


static R6G_12XLARGE๐Ÿ”น

Type: InstanceType

db.r6g.12xlarge.


static R6G_16XLARGE๐Ÿ”น

Type: InstanceType

db.r6g.16xlarge.


static R6G_2XLARGE๐Ÿ”น

Type: InstanceType

db.r6g.2xlarge.


static R6G_4XLARGE๐Ÿ”น

Type: InstanceType

db.r6g.4xlarge.


static R6G_8XLARGE๐Ÿ”น

Type: InstanceType

db.r6g.8xlarge.


static R6G_LARGE๐Ÿ”น

Type: InstanceType

db.r6g.large.


static R6G_XLARGE๐Ÿ”น

Type: InstanceType

db.r6g.xlarge.


static T3_MEDIUM๐Ÿ”น

Type: InstanceType

db.t3.medium.


static T4G_MEDIUM๐Ÿ”น

Type: InstanceType

db.t4g.medium.

Methods

NameDescription
static of(instanceType)๐Ÿ”นBuild an InstanceType from given string or token, such as CfnParameter.

static of(instanceType)๐Ÿ”น

public static of(instanceType: string): InstanceType

Parameters

  • instanceType string

Returns

  • InstanceType

Build an InstanceType from given string or token, such as CfnParameter.