Show / Hide Table of Contents

Interface IClusterEngineConfig

The type returned from the IClusterEngine.bindToCluster method.

Namespace: Amazon.CDK.AWS.RDS
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IClusterEngineConfig
Syntax (vb)
Public Interface 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",
                    ServerlessV2AutoPauseSupported = false
                },
                ParameterGroup = parameterGroup,
                Port = 123
            };

Synopsis

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.

Properties

Features

Features supported by the database engine.

IClusterEngineFeatures? Features { get; }
Property Value

IClusterEngineFeatures

Remarks

Default: - no features

See: https://docs.aws.amazon.com/AmazonRDS/latest/APIReference/API_DBEngineVersion.html

ParameterGroup

The ParameterGroup to use for the cluster.

IParameterGroup? ParameterGroup { get; }
Property Value

IParameterGroup

Remarks

Default: - no ParameterGroup will be used

Port

The port to use for this cluster, unless the customer specified the port directly.

double? Port { get; }
Property Value

double?

Remarks

Default: - use the default port for clusters (3306)

Back to top Generated by DocFX