interface ServerlessV2ScalingConfigurationProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.RDS.CfnDBCluster.ServerlessV2ScalingConfigurationProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsrds#CfnDBCluster_ServerlessV2ScalingConfigurationProperty |
![]() | software.amazon.awscdk.services.rds.CfnDBCluster.ServerlessV2ScalingConfigurationProperty |
![]() | aws_cdk.aws_rds.CfnDBCluster.ServerlessV2ScalingConfigurationProperty |
![]() | aws-cdk-lib » aws_rds » CfnDBCluster » ServerlessV2ScalingConfigurationProperty |
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 this 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 the ScalingConfiguration
property.
Valid for: Aurora Serverless v2 DB clusters
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_rds as rds } from 'aws-cdk-lib';
const serverlessV2ScalingConfigurationProperty: rds.CfnDBCluster.ServerlessV2ScalingConfigurationProperty = {
maxCapacity: 123,
minCapacity: 123,
secondsUntilAutoPause: 123,
};
Properties
Name | Type | Description |
---|---|---|
max | number | The maximum number of Aurora capacity units (ACUs) for a DB instance in an Aurora Serverless v2 cluster. |
min | number | The minimum number of Aurora capacity units (ACUs) for a DB instance in an Aurora Serverless v2 cluster. |
seconds | number | Specifies the number of seconds an Aurora Serverless v2 DB instance must be idle before Aurora attempts to automatically pause it. |
maxCapacity?
Type:
number
(optional)
The maximum number of Aurora capacity units (ACUs) for a DB instance in an Aurora Serverless v2 cluster.
You can specify ACU values in half-step increments, such as 40, 40.5, 41, and so on. The largest value that you can use is 128.
The maximum capacity must be higher than 0.5 ACUs. For more information, see Choosing the maximum Aurora Serverless v2 capacity setting for a cluster in the Amazon Aurora User Guide .
Aurora automatically sets certain parameters for Aurora Serverless V2 DB instances to values that depend on the maximum ACU value in the capacity range. When you update the maximum capacity value, the ParameterApplyStatus
value for the DB instance changes to pending-reboot
. You can update the parameter values by rebooting the DB instance after changing the capacity range.
minCapacity?
Type:
number
(optional)
The minimum number of Aurora capacity units (ACUs) for a DB instance in an Aurora Serverless v2 cluster.
You can specify ACU values in half-step increments, such as 8, 8.5, 9, and so on. For Aurora versions that support the Aurora Serverless v2 auto-pause feature, the smallest value that you can use is 0. For versions that don't support Aurora Serverless v2 auto-pause, the smallest value that you can use is 0.5.
secondsUntilAutoPause?
Type:
number
(optional)
Specifies the number of seconds an Aurora Serverless v2 DB instance must be idle before Aurora attempts to automatically pause it.
Specify a value between 300 seconds (five minutes) and 86,400 seconds (one day). The default is 300 seconds.