interface IndexReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.S3Vectors.IndexReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awss3vectors#IndexReference |
Java | software.amazon.awscdk.interfaces.s3vectors.IndexReference |
Python | aws_cdk.interfaces.aws_s3vectors.IndexReference |
TypeScript | aws-cdk-lib » interfaces » aws_s3vectors » 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_s3vectors as interfaces_s3vectors } from 'aws-cdk-lib/interfaces';
const indexReference: interfaces_s3vectors.IndexReference = {
indexArn: 'indexArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| index | string | The IndexArn of the Index resource. |
indexArn
Type:
string
The IndexArn of the Index resource.

.NET
Go
Java
Python
TypeScript