interface VectorSearchConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.NeptuneGraph.CfnGraphPropsMixin.VectorSearchConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsneptunegraph#CfnGraphPropsMixin_VectorSearchConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.neptunegraph.CfnGraphPropsMixin.VectorSearchConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_neptunegraph.CfnGraphPropsMixin.VectorSearchConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_neptunegraph » 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 { aws_neptunegraph as neptunegraph } from '@aws-cdk/cfn-property-mixins';
const vectorSearchConfigurationProperty: neptunegraph.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