StoreIndexFullTextArgs

data class StoreIndexFullTextArgs(val caseSensitive: Output<Boolean>? = null, val includeChinese: Output<Boolean>? = null, val token: Output<String>? = null) : ConvertibleToJava<StoreIndexFullTextArgs>

Constructors

Link copied to clipboard
fun StoreIndexFullTextArgs(caseSensitive: Output<Boolean>? = null, includeChinese: Output<Boolean>? = null, token: Output<String>? = null)

Functions

Link copied to clipboard
open override fun toJava(): StoreIndexFullTextArgs

Properties

Link copied to clipboard
val caseSensitive: Output<Boolean>? = null

Whether the case sensitive for the field. Default to false. It is valid when "type" is "text" or "json".

Link copied to clipboard
val includeChinese: Output<Boolean>? = null

Whether includes the chinese for the field. Default to false. It is valid when "type" is "text" or "json".

Link copied to clipboard
val token: Output<String>? = null

The string of several split words, like "\r", "#". It is valid when "type" is "text" or "json".