Interface CfnRetriever.RetrieverConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnRetriever.RetrieverConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnRetriever
@Stability(Stable)
public static interface CfnRetriever.RetrieverConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.qbusiness.*;
RetrieverConfigurationProperty retrieverConfigurationProperty = RetrieverConfigurationProperty.builder()
.kendraIndexConfiguration(KendraIndexConfigurationProperty.builder()
.indexId("indexId")
.build())
.nativeIndexConfiguration(NativeIndexConfigurationProperty.builder()
.indexId("indexId")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnRetriever.RetrieverConfigurationPropertystatic final classAn implementation forCfnRetriever.RetrieverConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectProvides information on how the Amazon Kendra index used as a retriever for your Amazon Q Business application is configured.default ObjectProvides information on how a Amazon Q Business index used as a retriever for your Amazon Q Business application is configured.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getKendraIndexConfiguration
Provides information on how the Amazon Kendra index used as a retriever for your Amazon Q Business application is configured.Returns union: either
IResolvableorCfnRetriever.KendraIndexConfigurationProperty- See Also:
-
getNativeIndexConfiguration
Provides information on how a Amazon Q Business index used as a retriever for your Amazon Q Business application is configured.Returns union: either
IResolvableorCfnRetriever.NativeIndexConfigurationProperty- See Also:
-
builder
-