IntegerFacetingOptionsArgs

data class IntegerFacetingOptionsArgs(val integerBuckets: Output<List<String>>? = null) : ConvertibleToJava<IntegerFacetingOptionsArgs>

Used to specify integer faceting options.

Constructors

Link copied to clipboard
fun IntegerFacetingOptionsArgs(integerBuckets: Output<List<String>>? = null)

Functions

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

Properties

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

Buckets for given integer values should be in strictly ascending order. For example, if values supplied are (1,5,10,100), the following facet buckets will be formed {<1, [1,5), [5-10), [10-100), >=100}.