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: