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: