Interface ClusterEngineFeatures
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
ClusterEngineFeatures.Jsii$Proxy
@Generated(value="jsii-pacmak/1.112.0 (build de1bc80)",
date="2025-07-24T11:33:21.624Z")
@Stability(Stable)
public interface ClusterEngineFeatures
extends software.amazon.jsii.JsiiSerializable
Represents Database Engine features.
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.rds.*; ClusterEngineFeatures clusterEngineFeatures = ClusterEngineFeatures.builder() .s3Export("s3Export") .s3Import("s3Import") .serverlessV2AutoPauseSupported(false) .build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forClusterEngineFeatures
static final class
An implementation forClusterEngineFeatures
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
Feature name for the DB instance that the IAM role to export to S3 bucket is to be associated with.default String
Feature name for the DB instance that the IAM role to access the S3 bucket for import is to be associated with.default Boolean
Whether the DB cluster engine supports the Aurora ServerlessV2 auto-pause feature.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getS3Export
Feature name for the DB instance that the IAM role to export to S3 bucket is to be associated with.Default: - no s3Export feature name
-
getS3Import
Feature name for the DB instance that the IAM role to access the S3 bucket for import is to be associated with.Default: - no s3Import feature name
-
getServerlessV2AutoPauseSupported
Whether the DB cluster engine supports the Aurora ServerlessV2 auto-pause feature.Default: false
-
builder
- Returns:
- a
ClusterEngineFeatures.Builder
ofClusterEngineFeatures
-