Class ClusterEngineConfig
The type returned from the IClusterEngine.bindToCluster
method.
Inheritance
System.Object
ClusterEngineConfig
Implements
Namespace: Amazon.CDK.AWS.RDS
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class ClusterEngineConfig : Object, IClusterEngineConfig
Syntax (vb)
Public Class ClusterEngineConfig
Inherits Object
Implements IClusterEngineConfig
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.RDS;
ParameterGroup parameterGroup;
var clusterEngineConfig = new ClusterEngineConfig {
Features = new ClusterEngineFeatures {
S3Export = "s3Export",
S3Import = "s3Import"
},
ParameterGroup = parameterGroup,
Port = 123
};
Synopsis
Constructors
ClusterEngineConfig() |
Properties
Features | Features supported by the database engine. |
ParameterGroup | The ParameterGroup to use for the cluster. |
Port | The port to use for this cluster, unless the customer specified the port directly. |
Constructors
ClusterEngineConfig()
public ClusterEngineConfig()
Properties
Features
Features supported by the database engine.
public IClusterEngineFeatures Features { get; set; }
Property Value
Remarks
Default: - no features
See: https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_DBEngineVersion.html
ParameterGroup
The ParameterGroup to use for the cluster.
public IParameterGroup ParameterGroup { get; set; }
Property Value
Remarks
Default: - no ParameterGroup will be used
Port
The port to use for this cluster, unless the customer specified the port directly.
public Nullable<double> Port { get; set; }
Property Value
System.Nullable<System.Double>
Remarks
Default: - use the default port for clusters (3306)