interface ClusterEngineBindOptions
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.RDS.ClusterEngineBindOptions |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsrds#ClusterEngineBindOptions |
Java | software.amazon.awscdk.services.rds.ClusterEngineBindOptions |
Python | aws_cdk.aws_rds.ClusterEngineBindOptions |
TypeScript (source) | aws-cdk-lib » aws_rds » ClusterEngineBindOptions |
The extra options passed to the IClusterEngine.bindToCluster method.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_rds as rds } from 'aws-cdk-lib';
import { aws_iam as interfaces_aws_iam } from 'aws-cdk-lib/interfaces';
declare const parameterGroup: rds.ParameterGroup;
declare const roleRef: interfaces_aws_iam.IRoleRef;
const clusterEngineBindOptions: rds.ClusterEngineBindOptions = {
parameterGroup: parameterGroup,
s3ExportRole: roleRef,
s3ImportRole: roleRef,
};
Properties
| Name | Type | Description |
|---|---|---|
| parameter | IParameter | The customer-provided ParameterGroup. |
| s3 | IRole | The role used for S3 exporting. |
| s3 | IRole | The role used for S3 importing. |
parameterGroup?
Type:
IParameter
(optional, default: none)
The customer-provided ParameterGroup.
s3ExportRole?
Type:
IRole
(optional, default: none)
The role used for S3 exporting.
s3ImportRole?
Type:
IRole
(optional, default: none)
The role used for S3 importing.

.NET
Go
Java
Python
TypeScript (