interface ServerlessScalingConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Neptune.CfnDBCluster.ServerlessScalingConfigurationProperty |
Java | software.amazon.awscdk.services.neptune.CfnDBCluster.ServerlessScalingConfigurationProperty |
Python | aws_cdk.aws_neptune.CfnDBCluster.ServerlessScalingConfigurationProperty |
TypeScript | @aws-cdk/aws-neptune » CfnDBCluster » ServerlessScalingConfigurationProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as neptune from '@aws-cdk/aws-neptune';
const serverlessScalingConfigurationProperty: neptune.CfnDBCluster.ServerlessScalingConfigurationProperty = {
maxCapacity: 123,
minCapacity: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| max | number | CfnDBCluster.ServerlessScalingConfigurationProperty.MaxCapacity. |
| min | number | CfnDBCluster.ServerlessScalingConfigurationProperty.MinCapacity. |
maxCapacity
Type:
number
CfnDBCluster.ServerlessScalingConfigurationProperty.MaxCapacity.
minCapacity
Type:
number
CfnDBCluster.ServerlessScalingConfigurationProperty.MinCapacity.

.NET
Java
Python
TypeScript