BotSlotTypeArgs

data class BotSlotTypeArgs(val description: Output<String>? = null, val externalSourceSetting: Output<BotExternalSourceSettingArgs>? = null, val name: Output<String>, val parentSlotTypeSignature: Output<String>? = null, val slotTypeValues: Output<List<BotSlotTypeValueArgs>>? = null, val valueSelectionSetting: Output<BotSlotValueSelectionSettingArgs>? = null) : ConvertibleToJava<BotSlotTypeArgs>

A custom, extended built-in or a grammar slot type.

Constructors

Link copied to clipboard
constructor(description: Output<String>? = null, externalSourceSetting: Output<BotExternalSourceSettingArgs>? = null, name: Output<String>, parentSlotTypeSignature: Output<String>? = null, slotTypeValues: Output<List<BotSlotTypeValueArgs>>? = null, valueSelectionSetting: Output<BotSlotValueSelectionSettingArgs>? = null)

Properties

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

A description of the slot type. Use the description to help identify the slot type in lists.

Link copied to clipboard

Sets the type of external information used to create the slot type.

Link copied to clipboard
val name: Output<String>

The name of the slot type. A slot type name must be unique withing the account.

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

The built-in slot type used as a parent of this slot type. When you define a parent slot type, the new slot type has the configuration of the parent lot type. Only AMAZON.AlphaNumeric is supported.

Link copied to clipboard

A list of SlotTypeValue objects that defines the values that the slot type can take. Each value can have a list of synonyms, additional values that help train the machine learning model about the values that it resolves for the slot.

Link copied to clipboard

Determines the slot resolution strategy that Amazon Lex uses to return slot type values. The field can be set to one of the following values:

Functions

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