Interface CfnGlobalClusterProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnGlobalClusterProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.93.0 (build 1706ca5)",
date="2024-01-03T18:29:31.576Z")
@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.rds.*;
CfnGlobalClusterProps cfnGlobalClusterProps = CfnGlobalClusterProps.builder()
.deletionProtection(false)
.engine("engine")
.engineVersion("engineVersion")
.globalClusterIdentifier("globalClusterIdentifier")
.sourceDbClusterIdentifier("sourceDbClusterIdentifier")
.storageEncrypted(false)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnGlobalClusterPropsstatic final classAn implementation forCfnGlobalClusterProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectSpecifies whether to enable deletion protection for the new global database cluster.default StringThe database engine to use for this global database cluster.default StringThe engine version to use for this global database cluster.default StringThe cluster identifier for this global database cluster.default StringThe Amazon Resource Name (ARN) to use as the primary cluster of the global database.default ObjectSpecifies whether to enable storage encryption for the new global database cluster.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDeletionProtection
Specifies whether to enable deletion protection for the new global database cluster.The global database can't be deleted when deletion protection is enabled.
- See Also:
-
getEngine
The database engine to use for this global database cluster.Valid Values:
aurora-mysql | aurora-postgresqlConstraints:
- Can't be specified if
SourceDBClusterIdentifieris specified. In this case, Amazon Aurora uses the engine of the source DB cluster.
- See Also:
- Can't be specified if
-
getEngineVersion
The engine version to use for this global database cluster.Constraints:
- Can't be specified if
SourceDBClusterIdentifieris specified. In this case, Amazon Aurora uses the engine version of the source DB cluster.
- See Also:
- Can't be specified if
-
getGlobalClusterIdentifier
The cluster identifier for this global database cluster.This parameter is stored as a lowercase string.
- See Also:
-
getSourceDbClusterIdentifier
The Amazon Resource Name (ARN) to use as the primary cluster of the global database.If you provide a value for this parameter, don't specify values for the following settings because Amazon Aurora uses the values from the specified source DB cluster:
DatabaseNameEngineEngineVersionStorageEncrypted
- See Also:
-
getStorageEncrypted
Specifies whether to enable storage encryption for the new global database cluster.Constraints:
- Can't be specified if
SourceDBClusterIdentifieris specified. In this case, Amazon Aurora uses the setting from the source DB cluster.
- See Also:
- Can't be specified if
-
builder
- Returns:
- a
CfnGlobalClusterProps.BuilderofCfnGlobalClusterProps
-