interface RetrieverConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QBusiness.Mixins.CfnRetrieverPropsMixin.RetrieverConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsqbusiness/mixins#CfnRetrieverPropsMixin_RetrieverConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.qbusiness.mixins.CfnRetrieverPropsMixin.RetrieverConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_qbusiness.mixins.CfnRetrieverPropsMixin.RetrieverConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_qbusiness » mixins » CfnRetrieverPropsMixin » 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 { mixins as qbusiness_mixins } from '@aws-cdk/mixins-preview/aws-qbusiness';
const retrieverConfigurationProperty: qbusiness_mixins.CfnRetrieverPropsMixin.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