Interface CfnGlobalClusterProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnGlobalClusterProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.133.0 (build 0f43e37)",
date="2026-06-16T16:14:28.809Z")
@Stability(Stable)
public interface CfnGlobalClusterProps
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.neptune.*;
CfnGlobalClusterProps cfnGlobalClusterProps = CfnGlobalClusterProps.builder()
.deletionProtection(false)
.engine("engine")
.engineVersion("engineVersion")
.globalClusterIdentifier("globalClusterIdentifier")
.sourceDbClusterIdentifier("sourceDbClusterIdentifier")
.storageEncrypted(false)
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnGlobalClusterPropsstatic final classAn implementation forCfnGlobalClusterProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectWhether deletion protection is enabled.default StringThe name of the database engine.default StringThe version number of the database engine.default StringThe cluster identifier of the global database cluster.default StringThe Amazon Resource Name (ARN) of an existing Neptune DB cluster to use as the primary cluster of the new global database.default ObjectWhether the global database cluster is storage encrypted.getTags()An array of key-value pairs to apply to this resource.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDeletionProtection
Whether deletion protection is enabled.Returns union: either
BooleanorIResolvable- See Also:
-
getEngine
The name of the database engine.- See Also:
-
getEngineVersion
The version number of the database engine.- See Also:
-
getGlobalClusterIdentifier
The cluster identifier of the global database cluster.- See Also:
-
getSourceDbClusterIdentifier
The Amazon Resource Name (ARN) of an existing Neptune DB cluster to use as the primary cluster of the new global database.- See Also:
-
getStorageEncrypted
Whether the global database cluster is storage encrypted.Returns union: either
BooleanorIResolvable- See Also:
-
getTags
An array of key-value pairs to apply to this resource.- See Also:
-
builder
- Returns:
- a
CfnGlobalClusterProps.BuilderofCfnGlobalClusterProps
-