interface ClusterEngineBindOptions
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.RDS.ClusterEngineBindOptions |
Java | software.amazon.awscdk.services.rds.ClusterEngineBindOptions |
Python | aws_cdk.aws_rds.ClusterEngineBindOptions |
TypeScript (source) | @aws-cdk/aws-rds » ClusterEngineBindOptions |
The extra options passed to 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 iam from '@aws-cdk/aws-iam';
import * as rds from '@aws-cdk/aws-rds';
declare const parameterGroup: rds.ParameterGroup;
declare const role: iam.Role;
const clusterEngineBindOptions: rds.ClusterEngineBindOptions = {
parameterGroup: parameterGroup,
s3ExportRole: role,
s3ImportRole: role,
};
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.