Interface CfnDBCluster.ServerlessV2ScalingConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDBCluster.ServerlessV2ScalingConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnDBCluster

@Stability(Stable) public static interface CfnDBCluster.ServerlessV2ScalingConfigurationProperty extends software.amazon.jsii.JsiiSerializable
The ServerlessV2ScalingConfiguration property type specifies the scaling configuration of an Aurora Serverless V2 DB cluster.

For more information, see Using Amazon Aurora Serverless v2 in the Amazon Aurora User Guide .

If you have an Aurora cluster, you must set the ScalingConfigurationInfo attribute before you add a DB instance that uses the db.serverless DB instance class. For more information, see Clusters that use Aurora Serverless v2 must have a capacity range specified in the Amazon Aurora User Guide .

This property is only supported for Aurora Serverless v2. For Aurora Serverless v1, use ScalingConfiguration property.

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.*;
 ServerlessV2ScalingConfigurationProperty serverlessV2ScalingConfigurationProperty = ServerlessV2ScalingConfigurationProperty.builder()
         .maxCapacity(123)
         .minCapacity(123)
         .build();