Interface ClusterEngineBindOptions
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
ClusterEngineBindOptions.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:49.079Z")
@Stability(Stable)
public interface ClusterEngineBindOptions
extends software.amazon.jsii.JsiiSerializable
The extra options passed to the
method.
invalid @link
IClusterEngine.bindToCluster
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.iam.*; import software.amazon.awscdk.services.rds.*; ParameterGroup parameterGroup; Role role; ClusterEngineBindOptions clusterEngineBindOptions = ClusterEngineBindOptions.builder() .parameterGroup(parameterGroup) .s3ExportRole(role) .s3ImportRole(role) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forClusterEngineBindOptions
static final class
An implementation forClusterEngineBindOptions
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default IParameterGroup
The customer-provided ParameterGroup.default IRole
The role used for S3 exporting.default IRole
The role used for S3 importing.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getParameterGroup
The customer-provided ParameterGroup.Default: - none
-
getS3ExportRole
The role used for S3 exporting.Default: - none
-
getS3ImportRole
The role used for S3 importing.Default: - none
-
builder
- Returns:
- a
ClusterEngineBindOptions.Builder
ofClusterEngineBindOptions
-