Show / Hide Table of Contents

Class ClusterEngineConfig

The type returned from the {@link IClusterEngine.bindToCluster} method.

Inheritance
System.Object
ClusterEngineConfig
Implements
IClusterEngineConfig
Namespace: Amazon.CDK.AWS.RDS
Assembly: Amazon.CDK.AWS.RDS.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

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.

public IParameterGroup ParameterGroup { get; set; }
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.

public Nullable<double> Port { get; set; }
Property Value

System.Nullable<System.Double>

Remarks

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

Implements

IClusterEngineConfig
Back to top Generated by DocFX