IndexFieldArgs

data class IndexFieldArgs(val arrayConfig: Output<String>? = null, val fieldPath: Output<String>? = null, val order: Output<String>? = null) : ConvertibleToJava<IndexFieldArgs>

Constructors

Link copied to clipboard
constructor(arrayConfig: Output<String>? = null, fieldPath: Output<String>? = null, order: Output<String>? = null)

Properties

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

Indicates that this field supports operations on arrayValues. Only one of order and arrayConfig can be specified. Possible values are: CONTAINS.

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

Name of the field.

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

Indicates that this field supports ordering by the specified order or comparing using =, <, <=, >, >=. Only one of order and arrayConfig can be specified. Possible values are: ASCENDING, DESCENDING.

Functions

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