Interface CfnCollectionGroupProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCollectionGroupProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.133.0 (build 0f43e37)",
date="2026-06-16T16:14:29.119Z")
@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")
.generation("generation")
.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.default StringThe generation of Amazon OpenSearch Serverless for 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:
-
getGeneration
The generation of Amazon OpenSearch Serverless for the collection group.Valid values are CLASSIC and NEXTGEN.
- See Also:
-
getTags
An array of key-value pairs to apply to this resource.- See Also:
-
builder
- Returns:
- a
CfnCollectionGroupProps.BuilderofCfnCollectionGroupProps
-