@Generated(value="jsii-pacmak/1.50.0 (build d1830a4)", date="2022-01-04T15:39:13.421Z") @Stability(value=Experimental) public interface ClusterEngineConfig extends software.amazon.jsii.JsiiSerializable
IClusterEngine.bindToCluster method.
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.*;
ParameterGroup parameterGroup;
ClusterEngineConfig clusterEngineConfig = ClusterEngineConfig.builder()
.features(ClusterEngineFeatures.builder()
.s3Export("s3Export")
.s3Import("s3Import")
.build())
.parameterGroup(parameterGroup)
.port(123)
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
ClusterEngineConfig.Builder
A builder for
ClusterEngineConfig |
static class |
ClusterEngineConfig.Jsii$Proxy
An implementation for
ClusterEngineConfig |
| Modifier and Type | Method and Description |
|---|---|
static ClusterEngineConfig.Builder |
builder() |
default ClusterEngineFeatures |
getFeatures()
(experimental) Features supported by the database engine.
|
default IParameterGroup |
getParameterGroup()
(experimental) The ParameterGroup to use for the cluster.
|
default Number |
getPort()
(experimental) The port to use for this cluster, unless the customer specified the port directly.
|
@Stability(value=Experimental) @Nullable default ClusterEngineFeatures getFeatures()
Default: - no features
https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_DBEngineVersion.html@Stability(value=Experimental) @Nullable default IParameterGroup getParameterGroup()
Default: - no ParameterGroup will be used
@Stability(value=Experimental) @Nullable default Number getPort()
Default: - use the default port for clusters (3306)
@Stability(value=Experimental) static ClusterEngineConfig.Builder builder()
ClusterEngineConfig.Builder of ClusterEngineConfigCopyright © 2022. All rights reserved.