Show / Hide Table of Contents

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 CfnDBCluster.IServerlessScalingConfigurationProperty
Syntax (vb)
Public Interface CfnDBCluster.IServerlessScalingConfigurationProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-neptune-dbcluster-serverlessscalingconfiguration.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.Neptune;

             var serverlessScalingConfigurationProperty = new ServerlessScalingConfigurationProperty {
                 MaxCapacity = 123,
                 MinCapacity = 123
             };

Synopsis

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.

Properties

MaxCapacity

The maximum number of Neptune capacity units (NCUs) for a DB instance in a Neptune Serverless cluster.

double MaxCapacity { get; }
Property Value

double

Remarks

You can specify NCU values in half-step increments, such as 40, 40.5, 41, and so on.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-neptune-dbcluster-serverlessscalingconfiguration.html#cfn-neptune-dbcluster-serverlessscalingconfiguration-maxcapacity

MinCapacity

The minimum number of Neptune capacity units (NCUs) for a DB instance in a Neptune Serverless cluster.

double MinCapacity { get; }
Property Value

double

Remarks

You can specify NCU values in half-step increments, such as 8, 8.5, 9, and so on.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-neptune-dbcluster-serverlessscalingconfiguration.html#cfn-neptune-dbcluster-serverlessscalingconfiguration-mincapacity

Back to top Generated by DocFX