interface VectorSearchBedrockRerankingModelConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Bedrock.CfnFlowPropsMixin.VectorSearchBedrockRerankingModelConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsbedrock#CfnFlowPropsMixin_VectorSearchBedrockRerankingModelConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.bedrock.CfnFlowPropsMixin.VectorSearchBedrockRerankingModelConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_bedrock.CfnFlowPropsMixin.VectorSearchBedrockRerankingModelConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_bedrock » CfnFlowPropsMixin » VectorSearchBedrockRerankingModelConfigurationProperty |
Configuration for the Amazon Bedrock foundation model used for reranking vector search results.
This specifies which model to use and any additional parameters required by the model.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_bedrock as bedrock } from '@aws-cdk/cfn-property-mixins';
declare const additionalModelRequestFields: any;
const vectorSearchBedrockRerankingModelConfigurationProperty: bedrock.CfnFlowPropsMixin.VectorSearchBedrockRerankingModelConfigurationProperty = {
additionalModelRequestFields: additionalModelRequestFields,
modelArn: 'modelArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| additional | any | A list of additional fields to include in the model request during reranking. |
| model | string | The Amazon Resource Name (ARN) of the foundation model to use for reranking. |
additionalModelRequestFields?
Type:
any
(optional)
A list of additional fields to include in the model request during reranking.
These fields provide extra context or configuration options specific to the selected foundation model.
modelArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the foundation model to use for reranking.
This model processes the query and search results to determine a more relevant ordering.

.NET
Go
Java
Python
TypeScript