Interface CfnCollectionProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnCollectionProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:00.554Z")
@Stability(Stable)
public interface CfnCollectionProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnCollection.
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.*;
CfnCollectionProps cfnCollectionProps = CfnCollectionProps.builder()
.name("name")
// the properties below are optional
.description("description")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.type("type")
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnCollectionPropsstatic final classAn implementation forCfnCollectionProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnCollectionProps.Builderbuilder()default StringA description of the collection.getName()The name of 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
-
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 (-)
-
getDescription
A description of the collection. -
getTags
An arbitrary set of tags (key–value pairs) to associate with the collection.For more information, see Tag .
-
getType
The type of collection.Possible values are
SEARCHandTIMESERIES. For more information, see Choosing a collection type . -
builder
- Returns:
- a
CfnCollectionProps.BuilderofCfnCollectionProps
-