sampleUtterances

@JvmName(name = "ndakpgtapxhsrwkc")
suspend fun sampleUtterances(value: Output<List<String>>)
@JvmName(name = "tntigvyicylriloy")
suspend fun sampleUtterances(value: List<String>?)

Parameters

value

An array of utterances (strings) that a user might say to signal the intent. For example, "I want {PizzaSize} pizza", "Order {Quantity} {PizzaSize} pizzas". In each utterance, a slot name is enclosed in curly braces. Must have between 1 and 10 items in the list, and each item must be less than or equal to 200 characters in length.


@JvmName(name = "vybkjloukujlyxbe")
suspend fun sampleUtterances(vararg values: Output<String>)


@JvmName(name = "sjgidscfusciagct")
suspend fun sampleUtterances(values: List<Output<String>>)
@JvmName(name = "lbixjqcfqtgncjwc")
suspend fun sampleUtterances(vararg values: String)

Parameters

values

An array of utterances (strings) that a user might say to signal the intent. For example, "I want {PizzaSize} pizza", "Order {Quantity} {PizzaSize} pizzas". In each utterance, a slot name is enclosed in curly braces. Must have between 1 and 10 items in the list, and each item must be less than or equal to 200 characters in length.