Show / Hide Table of Contents

Class CfnDBCluster.ServerlessV2ScalingConfigurationProperty

The ServerlessV2ScalingConfiguration property type specifies the scaling configuration of an Aurora Serverless V2 DB cluster.

Inheritance
System.Object
CfnDBCluster.ServerlessV2ScalingConfigurationProperty
Implements
CfnDBCluster.IServerlessV2ScalingConfigurationProperty
Namespace: Amazon.CDK.AWS.RDS
Assembly: Amazon.CDK.AWS.RDS.dll
Syntax (csharp)
public class ServerlessV2ScalingConfigurationProperty : Object, CfnDBCluster.IServerlessV2ScalingConfigurationProperty
Syntax (vb)
Public Class ServerlessV2ScalingConfigurationProperty
    Inherits Object
    Implements CfnDBCluster.IServerlessV2ScalingConfigurationProperty
Remarks

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.

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbcluster-serverlessv2scalingconfiguration.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.RDS;

var serverlessV2ScalingConfigurationProperty = new ServerlessV2ScalingConfigurationProperty {
    MaxCapacity = 123,
    MinCapacity = 123
};

Synopsis

Constructors

ServerlessV2ScalingConfigurationProperty()

Properties

MaxCapacity

The maximum number of Aurora capacity units (ACUs) for a DB instance in an Aurora Serverless v2 cluster.

MinCapacity

The minimum number of Aurora capacity units (ACUs) for a DB instance in an Aurora Serverless v2 cluster.

Constructors

ServerlessV2ScalingConfigurationProperty()

public ServerlessV2ScalingConfigurationProperty()

Properties

MaxCapacity

The maximum number of Aurora capacity units (ACUs) for a DB instance in an Aurora Serverless v2 cluster.

public Nullable<double> MaxCapacity { get; set; }
Property Value

System.Nullable<System.Double>

Remarks

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 .

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbcluster-serverlessv2scalingconfiguration.html#cfn-rds-dbcluster-serverlessv2scalingconfiguration-maxcapacity

MinCapacity

The minimum number of Aurora capacity units (ACUs) for a DB instance in an Aurora Serverless v2 cluster.

public Nullable<double> MinCapacity { get; set; }
Property Value

System.Nullable<System.Double>

Remarks

You can specify ACU values in half-step increments, such as 8, 8.5, 9, and so on. The smallest value that you can use is 0.5.

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-rds-dbcluster-serverlessv2scalingconfiguration.html#cfn-rds-dbcluster-serverlessv2scalingconfiguration-mincapacity

Implements

CfnDBCluster.IServerlessV2ScalingConfigurationProperty
Back to top Generated by DocFX