class EngineVersion
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Neptune.EngineVersion |
Java | software.amazon.awscdk.services.neptune.EngineVersion |
Python | aws_cdk.aws_neptune.EngineVersion |
TypeScript (source) | @aws-cdk/aws-neptune » EngineVersion |
Possible Instances Types to use in Neptune cluster used for defining {@link DatabaseClusterProps.engineVersion}.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as neptune from '@aws-cdk/aws-neptune';
const engineVersion = neptune.EngineVersion.V1_0_1_0;
Initializer
new EngineVersion(version: string)
Parameters
- version
string— the engine version of Neptune.
Constructor for specifying a custom engine version.
Properties
| Name | Type | Description |
|---|---|---|
| version | string | the engine version of Neptune. |
| static V1_0_1_0 | Engine | Neptune engine version 1.0.1.0. |
| static V1_0_1_1 | Engine | Neptune engine version 1.0.1.1. |
| static V1_0_1_2 | Engine | Neptune engine version 1.0.1.2. |
| static V1_0_2_1 | Engine | Neptune engine version 1.0.2.1. |
| static V1_0_2_2 | Engine | Neptune engine version 1.0.2.2. |
| static V1_0_3_0 | Engine | Neptune engine version 1.0.3.0. |
| static V1_0_4_0 | Engine | Neptune engine version 1.0.4.0. |
| static V1_0_4_1 | Engine | Neptune engine version 1.0.4.1. |
| static V1_0_5_0 | Engine | Neptune engine version 1.0.5.0. |
| static V1_1_0_0 | Engine | Neptune engine version 1.1.0.0. |
version
Type:
string
the engine version of Neptune.
static V1_0_1_0
Type:
Engine
Neptune engine version 1.0.1.0.
static V1_0_1_1
Type:
Engine
Neptune engine version 1.0.1.1.
static V1_0_1_2
Type:
Engine
Neptune engine version 1.0.1.2.
static V1_0_2_1
Type:
Engine
Neptune engine version 1.0.2.1.
static V1_0_2_2
Type:
Engine
Neptune engine version 1.0.2.2.
static V1_0_3_0
Type:
Engine
Neptune engine version 1.0.3.0.
static V1_0_4_0
Type:
Engine
Neptune engine version 1.0.4.0.
static V1_0_4_1
Type:
Engine
Neptune engine version 1.0.4.1.
static V1_0_5_0
Type:
Engine
Neptune engine version 1.0.5.0.
static V1_1_0_0
Type:
Engine
Neptune engine version 1.1.0.0.

.NET
Java
Python
TypeScript (