interface VectorSearchConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.NeptuneGraph.Mixins.CfnGraphPropsMixin.VectorSearchConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsneptunegraph/mixins#CfnGraphPropsMixin_VectorSearchConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.neptunegraph.mixins.CfnGraphPropsMixin.VectorSearchConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_neptunegraph.mixins.CfnGraphPropsMixin.VectorSearchConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_neptunegraph » mixins » CfnGraphPropsMixin » VectorSearchConfigurationProperty |
The vector-search configuration for the graph, which specifies the vector dimension to use in the vector index, if any.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as neptunegraph_mixins } from '@aws-cdk/mixins-preview/aws-neptunegraph';
const vectorSearchConfigurationProperty: neptunegraph_mixins.CfnGraphPropsMixin.VectorSearchConfigurationProperty = {
vectorSearchDimension: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| vector | number | The number of dimensions. |
vectorSearchDimension?
Type:
number
(optional)
The number of dimensions.

.NET
Go
Java
Python
TypeScript