Interface CfnCollectionGroup.CapacityLimitsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCollectionGroup.CapacityLimitsProperty.Jsii$Proxy
- Enclosing class:
CfnCollectionGroup
@Stability(Stable)
public static interface CfnCollectionGroup.CapacityLimitsProperty
extends software.amazon.jsii.JsiiSerializable
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.opensearchserverless.*;
CapacityLimitsProperty capacityLimitsProperty = CapacityLimitsProperty.builder()
.maxIndexingCapacityInOcu(123)
.maxSearchCapacityInOcu(123)
.minIndexingCapacityInOcu(123)
.minSearchCapacityInOcu(123)
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnCollectionGroup.CapacityLimitsPropertystatic final classAn implementation forCfnCollectionGroup.CapacityLimitsProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default NumberThe maximum indexing capacity for collections in the group.default NumberThe maximum search capacity for collections in the group.default NumberThe minimum indexing capacity for collections in the group.default NumberThe minimum search capacity for collections in the group.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getMaxIndexingCapacityInOcu
The maximum indexing capacity for collections in the group.- See Also:
-
getMaxSearchCapacityInOcu
The maximum search capacity for collections in the group.- See Also:
-
getMinIndexingCapacityInOcu
The minimum indexing capacity for collections in the group.- See Also:
-
getMinSearchCapacityInOcu
The minimum search capacity for collections in the group.- See Also:
-
builder
-