interface RetrieverConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.QBusiness.CfnRetriever.RetrieverConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsqbusiness#CfnRetriever_RetrieverConfigurationProperty |
Java | software.amazon.awscdk.services.qbusiness.CfnRetriever.RetrieverConfigurationProperty |
Python | aws_cdk.aws_qbusiness.CfnRetriever.RetrieverConfigurationProperty |
TypeScript | aws-cdk-lib » aws_qbusiness » CfnRetriever » RetrieverConfigurationProperty |
Provides information on how the retriever used for your Amazon Q Business application is configured.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_qbusiness as qbusiness } from 'aws-cdk-lib';
const retrieverConfigurationProperty: qbusiness.CfnRetriever.RetrieverConfigurationProperty = {
kendraIndexConfiguration: {
indexId: 'indexId',
},
nativeIndexConfiguration: {
indexId: 'indexId',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| kendra | IResolvable | Kendra | Provides information on how the Amazon Kendra index used as a retriever for your Amazon Q Business application is configured. |
| native | IResolvable | Native | Provides information on how a Amazon Q Business index used as a retriever for your Amazon Q Business application is configured. |
kendraIndexConfiguration?
Type:
IResolvable | Kendra
(optional)
Provides information on how the Amazon Kendra index used as a retriever for your Amazon Q Business application is configured.
nativeIndexConfiguration?
Type:
IResolvable | Native
(optional)
Provides information on how a Amazon Q Business index used as a retriever for your Amazon Q Business application is configured.

.NET
Go
Java
Python
TypeScript