Interface CfnIndexPropsMixin.AnalysisProperty

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

@Stability(Stable) public static interface CfnIndexPropsMixin.AnalysisProperty extends software.amazon.jsii.JsiiSerializable
Custom analysis configuration including analyzers, tokenizers, and filters.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cfnpropertymixins.services.opensearchserverless.*;
 AnalysisProperty analysisProperty = AnalysisProperty.builder()
         .analyzer(Map.of(
                 "analyzerKey", AnalyzerItemsProperty.builder()
                         .charFilter(List.of("charFilter"))
                         .filter(List.of("filter"))
                         .tokenizer("tokenizer")
                         .type("type")
                         .build()))
         .build();
 

See Also: