Module Values.RuntimeHintDetails

Provides an array of phrases that should be given preference when resolving values for a slot.

Sourcetype nonrec t = {
  1. runtimeHintValues : RuntimeHintValuesList.t option;
    (*

    One or more strings that Amazon Lex should look for in the input to the bot. Each phrase is given preference when deciding on slot values.

    *)
  2. subSlotHints : SlotHintsSlotMap.t option;
    (*

    A map of constituent sub slot names inside a composite slot in the intent and the phrases that should be added for each sub slot. Inside each composite slot hints, this structure provides a mechanism to add granular sub slot phrases. Only sub slot hints are supported for composite slots. The intent name, composite slot name and the constituent sub slot names must exist.

    *)
}
Sourceval make : ?runtimeHintValues:RuntimeHintValuesList.t -> ?subSlotHints:SlotHintsSlotMap.t -> unit -> t
Sourceval to_value : t -> Awso.Botodata.value
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t