interface ParametersProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.OpenSearchServerless.CfnIndexPropsMixin.ParametersProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsopensearchserverless#CfnIndexPropsMixin_ParametersProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.opensearchserverless.CfnIndexPropsMixin.ParametersProperty |
Python | aws_cdk.cfn_property_mixins.aws_opensearchserverless.CfnIndexPropsMixin.ParametersProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_opensearchserverless » CfnIndexPropsMixin » ParametersProperty |
Additional parameters for the k-NN algorithm.
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 parametersProperty: opensearchserverless.CfnIndexPropsMixin.ParametersProperty = {
efConstruction: 123,
m: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| ef | number | The size of the dynamic list used during k-NN graph creation. |
| m? | number | Number of neighbors to consider during k-NN search. |
efConstruction?
Type:
number
(optional)
The size of the dynamic list used during k-NN graph creation.
m?
Type:
number
(optional)
Number of neighbors to consider during k-NN search.

.NET
Go
Java
Python
TypeScript