Interface CfnIndexPropsMixin.AnalyzerItemsProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnIndexPropsMixin.AnalyzerItemsProperty.Jsii$Proxy
- Enclosing class:
CfnIndexPropsMixin
@Stability(Stable)
public static interface CfnIndexPropsMixin.AnalyzerItemsProperty
extends software.amazon.jsii.JsiiSerializable
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.*;
AnalyzerItemsProperty analyzerItemsProperty = AnalyzerItemsProperty.builder()
.charFilter(List.of("charFilter"))
.filter(List.of("filter"))
.tokenizer("tokenizer")
.type("type")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnIndexPropsMixin.AnalyzerItemsPropertystatic final classAn implementation forCfnIndexPropsMixin.AnalyzerItemsProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCharFilter
Character filters to apply.- See Also:
-
getFilter
Token filters to apply.- See Also:
-
getTokenizer
The tokenizer to use.- See Also:
-
getType
The analyzer type (e.g. custom, standard, simple).- See Also:
-
builder
-