interface ClusterEngineConfig
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.RDS.ClusterEngineConfig | 
|  Java | software.amazon.awscdk.services.rds.ClusterEngineConfig | 
|  Python | aws_cdk.aws_rds.ClusterEngineConfig | 
|  TypeScript (source) | @aws-cdk/aws-rds»ClusterEngineConfig | 
The type returned from the {@link IClusterEngine.bindToCluster} method.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as rds from '@aws-cdk/aws-rds';
declare const parameterGroup: rds.ParameterGroup;
const clusterEngineConfig: rds.ClusterEngineConfig = {
  features: {
    s3Export: 's3Export',
    s3Import: 's3Import',
  },
  parameterGroup: parameterGroup,
  port: 123,
};
Properties
| Name | Type | Description | 
|---|---|---|
| features? | Cluster | Features supported by the database engine. | 
| parameter | IParameter | The ParameterGroup to use for the cluster. | 
| port? | number | The port to use for this cluster, unless the customer specified the port directly. | 
features?
Type:
Cluster
(optional, default: no features)
Features supported by the database engine.
parameterGroup?
Type:
IParameter
(optional, default: no ParameterGroup will be used)
The ParameterGroup to use for the cluster.
port?
Type:
number
(optional, default: use the default port for clusters (3306))
The port to use for this cluster, unless the customer specified the port directly.
