interface CapacityLimitsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.OpenSearchServerless.CfnCollectionGroup.CapacityLimitsProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsopensearchserverless#CfnCollectionGroup_CapacityLimitsProperty |
Java | software.amazon.awscdk.services.opensearchserverless.CfnCollectionGroup.CapacityLimitsProperty |
Python | aws_cdk.aws_opensearchserverless.CfnCollectionGroup.CapacityLimitsProperty |
TypeScript | aws-cdk-lib » aws_opensearchserverless » CfnCollectionGroup » CapacityLimitsProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_opensearchserverless as opensearchserverless } from 'aws-cdk-lib';
const capacityLimitsProperty: opensearchserverless.CfnCollectionGroup.CapacityLimitsProperty = {
maxIndexingCapacityInOcu: 123,
maxSearchCapacityInOcu: 123,
minIndexingCapacityInOcu: 123,
minSearchCapacityInOcu: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| max | number | The maximum indexing capacity for collections in the group. |
| max | number | The maximum search capacity for collections in the group. |
| min | number | The minimum indexing capacity for collections in the group. |
| min | number | The minimum search capacity for collections in the group. |
maxIndexingCapacityInOcu?
Type:
number
(optional)
The maximum indexing capacity for collections in the group.
maxSearchCapacityInOcu?
Type:
number
(optional)
The maximum search capacity for collections in the group.
minIndexingCapacityInOcu?
Type:
number
(optional)
The minimum indexing capacity for collections in the group.
minSearchCapacityInOcu?
Type:
number
(optional)
The minimum search capacity for collections in the group.

.NET
Go
Java
Python
TypeScript