Interface CfnCollectionGroupProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCollectionGroupProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-02T12:05:13.030Z")
@Stability(Stable)
public interface CfnCollectionGroupProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnCollectionGroup.
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.*;
CfnCollectionGroupProps cfnCollectionGroupProps = CfnCollectionGroupProps.builder()
.name("name")
.standbyReplicas("standbyReplicas")
// the properties below are optional
.capacityLimits(CapacityLimitsProperty.builder()
.maxIndexingCapacityInOcu(123)
.maxSearchCapacityInOcu(123)
.minIndexingCapacityInOcu(123)
.minSearchCapacityInOcu(123)
.build())
.description("description")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnCollectionGroupPropsstatic final classAn implementation forCfnCollectionGroupProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectReturns union: eitherIResolvableorCfnCollectionGroup.CapacityLimitsPropertydefault StringThe description of the collection group.getName()The name of the collection group.Indicates whether standby replicas are used for the collection group.getTags()An array of key-value pairs to apply to this resource.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
The name of the collection group.- See Also:
-
getStandbyReplicas
Indicates whether standby replicas are used for the collection group.- See Also:
-
getCapacityLimits
Returns union: eitherIResolvableorCfnCollectionGroup.CapacityLimitsProperty- See Also:
-
getDescription
The description of the collection group.- See Also:
-
getTags
An array of key-value pairs to apply to this resource.- See Also:
-
builder
- Returns:
- a
CfnCollectionGroupProps.BuilderofCfnCollectionGroupProps
-