Interface CfnDBCluster.IServerlessScalingConfigurationProperty
Contains the scaling configuration of a Neptune Serverless DB cluster.
Namespace: Amazon.CDK.AWS.Neptune
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IServerlessScalingConfigurationProperty
Syntax (vb)
Public Interface 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
Properties
Max |
The maximum number of Neptune capacity units (NCUs) for a DB instance in a Neptune Serverless cluster. |
Min |
The minimum number of Neptune capacity units (NCUs) for a DB instance in a Neptune Serverless cluster. |
Properties
MaxCapacity
The maximum number of Neptune capacity units (NCUs) for a DB instance in a Neptune Serverless cluster.
double MaxCapacity { get; }
Property Value
System.
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.
double MinCapacity { get; }
Property Value
System.
Remarks
You can specify NCU values in half-step increments, such as 8, 8.5, 9, and so on.