package awsopensearchserverless import ( "github.com/aws/aws-cdk-go/awscdk/v2" ) // 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 "github.com/aws/aws-cdk-go/awscdk" // // cfnCollectionProps := &CfnCollectionProps{ // Name: jsii.String("name"), // // // the properties below are optional // Description: jsii.String("description"), // Tags: []cfnTag{ // &cfnTag{ // Key: jsii.String("key"), // Value: jsii.String("value"), // }, // }, // Type: jsii.String("type"), // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opensearchserverless-collection.html // type CfnCollectionProps struct { // 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: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opensearchserverless-collection.html#cfn-opensearchserverless-collection-name // Name *string `field:"required" json:"name" yaml:"name"` // A description of the collection. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opensearchserverless-collection.html#cfn-opensearchserverless-collection-description // Description *string `field:"optional" json:"description" yaml:"description"` // An arbitrary set of tags (key–value pairs) to associate with the collection. // // For more information, see [Tag](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html) . // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opensearchserverless-collection.html#cfn-opensearchserverless-collection-tags // Tags *[]*awscdk.CfnTag `field:"optional" json:"tags" yaml:"tags"` // The type of collection. // // Possible values are `SEARCH` and `TIMESERIES` . For more information, see [Choosing a collection type](https://docs.aws.amazon.com/opensearch-service/latest/developerguide/serverless-overview.html#serverless-usecase) . // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opensearchserverless-collection.html#cfn-opensearchserverless-collection-type // Type *string `field:"optional" json:"type" yaml:"type"` }