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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnIndexPropsMixin.AnalysisPropertystatic final classAn implementation forCfnIndexPropsMixin.AnalysisProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAnalyzer
Custom analyzer definitions.Returns union: either
IResolvableor Mapinvalid input: '<'String, eitherIResolvableorCfnIndexPropsMixin.AnalyzerItemsProperty>- See Also:
-
builder
-