AWS SDK Version 3 for .NET
API Reference

AWS services or capabilities described in AWS Documentation may vary by region/location. Click Getting Started with Amazon AWS to see specific differences applicable to the China (Beijing) Region.

Set the capacity of an Aurora Serverless v1 DB cluster to a specific value.

Aurora Serverless v1 scales seamlessly based on the workload on the DB cluster. In some cases, the capacity might not scale fast enough to meet a sudden change in workload, such as a large number of new transactions. Call ModifyCurrentDBClusterCapacity to set the capacity explicitly.

After this call sets the DB cluster capacity, Aurora Serverless v1 can automatically scale the DB cluster based on the cooldown period for scaling up and the cooldown period for scaling down.

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

If you call ModifyCurrentDBClusterCapacity with the default TimeoutAction, connections that prevent Aurora Serverless v1 from finding a scaling point might be dropped. For more information about scaling points, see Autoscaling for Aurora Serverless v1 in the Amazon Aurora User Guide.

This operation only applies to Aurora Serverless v1 DB clusters.

Note:

For .NET Core this operation is only available in asynchronous form. Please refer to ModifyCurrentDBClusterCapacityAsync.

Namespace: Amazon.RDS
Assembly: AWSSDK.RDS.dll
Version: 3.x.y.z

Syntax

C#
public virtual ModifyCurrentDBClusterCapacityResponse ModifyCurrentDBClusterCapacity(
         ModifyCurrentDBClusterCapacityRequest request
)

Parameters

request
Type: Amazon.RDS.Model.ModifyCurrentDBClusterCapacityRequest

Container for the necessary parameters to execute the ModifyCurrentDBClusterCapacity service method.

Return Value


The response from the ModifyCurrentDBClusterCapacity service method, as returned by RDS.

Exceptions

ExceptionCondition
DBClusterNotFoundException DBClusterIdentifier doesn't refer to an existing DB cluster.
InvalidDBClusterCapacityException Capacity isn't a valid Aurora Serverless DB cluster capacity. Valid capacity values are 2, 4, 8, 16, 32, 64, 128, and 256.
InvalidDBClusterStateException The requested operation can't be performed while the cluster is in this state.

Version Information

.NET Framework:
Supported in: 4.5, 4.0, 3.5

See Also