Get Slot Type Result
data class GetSlotTypeResult(val checksum: String, val createdDate: String, val description: String, val enumerationValues: List<GetSlotTypeEnumerationValue>, val id: String, val lastUpdatedDate: String, val name: String, val valueSelectionStrategy: String, val version: String? = null)
A collection of values returned by getSlotType.
Constructors
Properties
Link copied to clipboard
Date when the slot type version was created.
Link copied to clipboard
Description of the slot type.
Link copied to clipboard
Set of EnumerationValue objects that defines the values that the slot type can take. Each value can have a set of synonyms, which are additional values that help train the machine learning model about the values that it resolves for a slot.
Link copied to clipboard
Date when the $LATEST version of this slot type was updated.
Link copied to clipboard
Determines the slot resolution strategy that Amazon Lex uses to return slot type values. ORIGINAL_VALUE
returns the value entered by the user if the user value is similar to the slot value. TOP_RESOLUTION
returns the first value in the resolution list if there is a resolution list for the slot, otherwise null is returned.