Interface CfnIndex.SearchProperty

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

@Stability(Stable) public static interface CfnIndex.SearchProperty extends software.amazon.jsii.JsiiSerializable
Provides information about how a custom index field is used during a search.

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.kendra.*;
 SearchProperty searchProperty = SearchProperty.builder()
         .displayable(false)
         .facetable(false)
         .searchable(false)
         .sortable(false)
         .build();
 

See Also: