interface ServerlessScalingConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Neptune.Mixins.CfnDBClusterPropsMixin.ServerlessScalingConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsneptune/mixins#CfnDBClusterPropsMixin_ServerlessScalingConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.neptune.mixins.CfnDBClusterPropsMixin.ServerlessScalingConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_neptune.mixins.CfnDBClusterPropsMixin.ServerlessScalingConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_neptune » mixins » 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 { mixins as neptune_mixins } from '@aws-cdk/mixins-preview/aws-neptune';
const serverlessScalingConfigurationProperty: neptune_mixins.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