Interface CfnIndex.AnalysisProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnIndex.AnalysisProperty.Jsii$Proxy
- Enclosing class:
CfnIndex
@Stability(Stable)
public static interface CfnIndex.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.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 forCfnIndex.AnalysisPropertystatic final classAn implementation forCfnIndex.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, eitherIResolvableorCfnIndex.AnalyzerItemsProperty>- See Also:
-
builder
- Returns:
- a
CfnIndex.AnalysisProperty.BuilderofCfnIndex.AnalysisProperty
-