Interface IClusterEngineBindOptions
The extra options passed to the IClusterEngine.bindToCluster method.
Namespace: Amazon.CDK.AWS.RDS
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IClusterEngineBindOptions
Syntax (vb)
Public Interface IClusterEngineBindOptions
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;
using Amazon.CDK.Interfaces.IAM;
ParameterGroup parameterGroup;
IRoleRef roleRef;
var clusterEngineBindOptions = new ClusterEngineBindOptions {
ParameterGroup = parameterGroup,
S3ExportRole = roleRef,
S3ImportRole = roleRef
};
Synopsis
Properties
| ParameterGroup | The customer-provided ParameterGroup. |
| S3ExportRole | The role used for S3 exporting. |
| S3ImportRole | The role used for S3 importing. |
Properties
ParameterGroup
The customer-provided ParameterGroup.
IParameterGroup? ParameterGroup { get; }
Property Value
Remarks
Default: - none
S3ExportRole
The role used for S3 exporting.
IRoleRef? S3ExportRole { get; }
Property Value
Remarks
Default: - none
S3ImportRole
The role used for S3 importing.
IRoleRef? S3ImportRole { get; }
Property Value
Remarks
Default: - none