Interface CfnFlowVersion.VectorSearchBedrockRerankingModelConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnFlowVersion.VectorSearchBedrockRerankingModelConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnFlowVersion

@Stability(Stable) public static interface CfnFlowVersion.VectorSearchBedrockRerankingModelConfigurationProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.bedrock.*;
 Object additionalModelRequestFields;
 VectorSearchBedrockRerankingModelConfigurationProperty vectorSearchBedrockRerankingModelConfigurationProperty = VectorSearchBedrockRerankingModelConfigurationProperty.builder()
         .modelArn("modelArn")
         // the properties below are optional
         .additionalModelRequestFields(additionalModelRequestFields)
         .build();
 

See Also: