Interface CfnCollectionMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCollectionMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.121.0 (build d7af9b9)",
date="2025-12-18T18:20:28.842Z")
@Stability(Stable)
public interface CfnCollectionMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnCollectionPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.mixins.preview.services.opensearchserverless.mixins.*;
CfnCollectionMixinProps cfnCollectionMixinProps = CfnCollectionMixinProps.builder()
.description("description")
.name("name")
.standbyReplicas("standbyReplicas")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.type("type")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnCollectionMixinPropsstatic final classAn implementation forCfnCollectionMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringA description of the collection.default StringgetName()The name of the collection.default StringIndicates whether to use standby replicas for the collection.getTags()An arbitrary set of tags (key–value pairs) to associate with the collection.default StringgetType()The type of collection.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDescription
A description of the collection.- See Also:
-
getName
The name of the collection.Collection names must meet the following criteria:
- Starts with a lowercase letter
- Unique to your account and AWS Region
- Contains between 3 and 28 characters
- Contains only lowercase letters a-z, the numbers 0-9, and the hyphen (-)
- See Also:
-
getStandbyReplicas
Indicates whether to use standby replicas for the collection.You can't update this property after the collection is already created. If you attempt to modify this property, the collection continues to use the original value.
- See Also:
-
getTags
An arbitrary set of tags (key–value pairs) to associate with the collection.For more information, see Tag .
- See Also:
-
getType
The type of collection.Possible values are
SEARCH,TIMESERIES, andVECTORSEARCH. For more information, see Choosing a collection type .- See Also:
-
builder
- Returns:
- a
CfnCollectionMixinProps.BuilderofCfnCollectionMixinProps
-