interface CfnGlobalClusterProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Neptune.CfnGlobalClusterProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsneptune#CfnGlobalClusterProps |
Java | software.amazon.awscdk.services.neptune.CfnGlobalClusterProps |
Python | aws_cdk.aws_neptune.CfnGlobalClusterProps |
TypeScript | aws-cdk-lib » aws_neptune » CfnGlobalClusterProps |
Properties for defining a CfnGlobalCluster.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_neptune as neptune } from 'aws-cdk-lib';
const cfnGlobalClusterProps: neptune.CfnGlobalClusterProps = {
deletionProtection: false,
engine: 'engine',
engineVersion: 'engineVersion',
globalClusterIdentifier: 'globalClusterIdentifier',
sourceDbClusterIdentifier: 'sourceDbClusterIdentifier',
storageEncrypted: false,
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| deletion | boolean | IResolvable | Whether deletion protection is enabled. |
| engine? | string | The name of the database engine. |
| engine | string | The version number of the database engine. |
| global | string | The cluster identifier of the global database cluster. |
| source | string | The Amazon Resource Name (ARN) of an existing Neptune DB cluster to use as the primary cluster of the new global database. |
| storage | boolean | IResolvable | Whether the global database cluster is storage encrypted. |
| tags? | Cfn[] | An array of key-value pairs to apply to this resource. |
deletionProtection?
Type:
boolean | IResolvable
(optional)
Whether deletion protection is enabled.
engine?
Type:
string
(optional)
The name of the database engine.
engineVersion?
Type:
string
(optional)
The version number of the database engine.
globalClusterIdentifier?
Type:
string
(optional)
The cluster identifier of the global database cluster.
sourceDbClusterIdentifier?
Type:
string
(optional)
The Amazon Resource Name (ARN) of an existing Neptune DB cluster to use as the primary cluster of the new global database.
storageEncrypted?
Type:
boolean | IResolvable
(optional)
Whether the global database cluster is storage encrypted.
tags?
Type:
Cfn[]
(optional)
An array of key-value pairs to apply to this resource.

.NET
Go
Java
Python
TypeScript