interface CfnCollectionIndexMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.OpenSearchServerless.CfnCollectionIndexMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsopensearchserverless#CfnCollectionIndexMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.opensearchserverless.CfnCollectionIndexMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_opensearchserverless.CfnCollectionIndexMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_opensearchserverless » CfnCollectionIndexMixinProps |
Properties for CfnCollectionIndexPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_opensearchserverless as opensearchserverless } from '@aws-cdk/cfn-property-mixins';
const cfnCollectionIndexMixinProps: opensearchserverless.CfnCollectionIndexMixinProps = {
id: 'id',
indexName: 'indexName',
indexSchema: 'indexSchema',
};
Properties
| Name | Type | Description |
|---|---|---|
| id? | string | The identifier of the collection. |
| index | string | The name of the collection index. |
| index | string | The Mappings for the collection index. |
id?
Type:
string
(optional)
The identifier of the collection.
indexName?
Type:
string
(optional)
The name of the collection index.
indexSchema?
Type:
string
(optional)
The Mappings for the collection index.

.NET
Go
Java
Python
TypeScript