Class CfnDBCluster.ServerlessScalingConfigurationProperty
Contains the scaling configuration of a Neptune Serverless DB cluster.
Inherited Members
Namespace: Amazon.CDK.AWS.Neptune
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnDBCluster.ServerlessScalingConfigurationProperty : CfnDBCluster.IServerlessScalingConfigurationProperty
Syntax (vb)
Public Class CfnDBCluster.ServerlessScalingConfigurationProperty Implements CfnDBCluster.IServerlessScalingConfigurationProperty
Remarks
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.Neptune;
var serverlessScalingConfigurationProperty = new ServerlessScalingConfigurationProperty {
MaxCapacity = 123,
MinCapacity = 123
};
Synopsis
Constructors
| ServerlessScalingConfigurationProperty() | Contains the scaling configuration of a Neptune Serverless DB cluster. |
Properties
| MaxCapacity | The maximum number of Neptune capacity units (NCUs) for a DB instance in a Neptune Serverless cluster. |
| MinCapacity | The minimum number of Neptune capacity units (NCUs) for a DB instance in a Neptune Serverless cluster. |
Constructors
ServerlessScalingConfigurationProperty()
Contains the scaling configuration of a Neptune Serverless DB cluster.
public ServerlessScalingConfigurationProperty()
Remarks
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.Neptune;
var serverlessScalingConfigurationProperty = new ServerlessScalingConfigurationProperty {
MaxCapacity = 123,
MinCapacity = 123
};
Properties
MaxCapacity
The maximum number of Neptune capacity units (NCUs) for a DB instance in a Neptune Serverless cluster.
public double MaxCapacity { get; set; }
Property Value
Remarks
You can specify NCU values in half-step increments, such as 40, 40.5, 41, and so on.
MinCapacity
The minimum number of Neptune capacity units (NCUs) for a DB instance in a Neptune Serverless cluster.
public double MinCapacity { get; set; }
Property Value
Remarks
You can specify NCU values in half-step increments, such as 8, 8.5, 9, and so on.