interface ServerlessScalingConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Neptune.CfnDBClusterPropsMixin.ServerlessScalingConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsneptune#CfnDBClusterPropsMixin_ServerlessScalingConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.neptune.CfnDBClusterPropsMixin.ServerlessScalingConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_neptune.CfnDBClusterPropsMixin.ServerlessScalingConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_neptune » CfnDBClusterPropsMixin » ServerlessScalingConfigurationProperty |
Contains the scaling configuration of a Neptune Serverless DB cluster.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_neptune as neptune } from '@aws-cdk/cfn-property-mixins';
const serverlessScalingConfigurationProperty: neptune.CfnDBClusterPropsMixin.ServerlessScalingConfigurationProperty = {
maxCapacity: 123,
minCapacity: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| max | number | The maximum number of Neptune capacity units (NCUs) for a DB instance in a Neptune Serverless cluster. |
| min | number | The minimum number of Neptune capacity units (NCUs) for a DB instance in a Neptune Serverless cluster. |
maxCapacity?
Type:
number
(optional)
The maximum number of Neptune capacity units (NCUs) for a DB instance in a Neptune Serverless cluster.
You can specify NCU values in half-step increments, such as 40, 40.5, 41, and so on.
minCapacity?
Type:
number
(optional)
The minimum number of Neptune capacity units (NCUs) for a DB instance in a Neptune Serverless cluster.
You can specify NCU values in half-step increments, such as 8, 8.5, 9, and so on.

.NET
Go
Java
Python
TypeScript