Show / Hide Table of Contents

Class CfnDBCluster.ServerlessScalingConfigurationProperty

Contains the scaling configuration of a Neptune Serverless DB cluster.

Inheritance
object
CfnDBCluster.ServerlessScalingConfigurationProperty
Implements
CfnDBCluster.IServerlessScalingConfigurationProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

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

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

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
             };

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

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.

public double MinCapacity { get; set; }
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

Implements

CfnDBCluster.IServerlessScalingConfigurationProperty
Back to top Generated by DocFX