interface IndexReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.OpenSearchServerless.IndexReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsopensearchserverless#IndexReference |
Java | software.amazon.awscdk.interfaces.opensearchserverless.IndexReference |
Python | aws_cdk.interfaces.aws_opensearchserverless.IndexReference |
TypeScript | aws-cdk-lib » interfaces » aws_opensearchserverless » IndexReference |
A reference to a Index resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_opensearchserverless as interfaces_aws_opensearchserverless } from 'aws-cdk-lib/interfaces';
const indexReference: interfaces_aws_opensearchserverless.IndexReference = {
collectionEndpoint: 'collectionEndpoint',
indexName: 'indexName',
};
Properties
| Name | Type | Description |
|---|---|---|
| collection | string | The CollectionEndpoint of the Index resource. |
| index | string | The IndexName of the Index resource. |
collectionEndpoint
Type:
string
The CollectionEndpoint of the Index resource.
indexName
Type:
string
The IndexName of the Index resource.

.NET
Go
Java
Python
TypeScript