interface CapacityLimitsProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.OpenSearchServerless.Mixins.CfnCollectionGroupPropsMixin.CapacityLimitsProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsopensearchserverless/mixins#CfnCollectionGroupPropsMixin_CapacityLimitsProperty |
Java | software.amazon.awscdk.mixins.preview.services.opensearchserverless.mixins.CfnCollectionGroupPropsMixin.CapacityLimitsProperty |
Python | aws_cdk.mixins_preview.aws_opensearchserverless.mixins.CfnCollectionGroupPropsMixin.CapacityLimitsProperty |
TypeScript | @aws-cdk/mixins-preview » aws_opensearchserverless » mixins » CfnCollectionGroupPropsMixin » CapacityLimitsProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as opensearchserverless_mixins } from '@aws-cdk/mixins-preview/aws-opensearchserverless';
const capacityLimitsProperty: opensearchserverless_mixins.CfnCollectionGroupPropsMixin.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