Interface CfnDBCluster.ScalingConfigurationProperty

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

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

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

This property is only supported for Aurora Serverless v1. For Aurora Serverless v2, Use the ServerlessV2ScalingConfiguration property.

Valid for: Aurora Serverless v1 DB clusters only

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.*;
 ScalingConfigurationProperty scalingConfigurationProperty = ScalingConfigurationProperty.builder()
         .autoPause(false)
         .maxCapacity(123)
         .minCapacity(123)
         .secondsBeforeTimeout(123)
         .secondsUntilAutoPause(123)
         .timeoutAction("timeoutAction")
         .build();
 

See Also: