Module Values.PromptSource

Obtains information from the user. To define a prompt, provide one or more messages and specify the number of attempts to get information from the user. If you provide more than one message, Amazon Lex chooses one of the messages to use to prompt the user. For more information, see how-it-works.

Sourcetype nonrec t = {
  1. messages : MessageList.t;
    (*

    An array of objects, each of which provides a message string and its type. You can specify the message string in plain text or in Speech Synthesis Markup Language (SSML).

    *)
  2. maxAttempts : PromptMaxAttempts.t;
    (*

    The number of times to prompt the user for information.

    *)
  3. responseCard : ResponseCard.t option;
    (*

    A response card. Amazon Lex uses this prompt at runtime, in the PostText API response. It substitutes session attributes and slot values for placeholders in the response card. For more information, see ex-resp-card.

    *)
}
Sourceval context_ : string
Sourceval make : ?responseCard:??? -> messages:MessageList.t -> maxAttempts:PromptMaxAttempts.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of PromptMaxAttempts.t | `List of [> `Structure of (string * [> `Enum of string | `Integer of GroupNumber.t | `String of ContentString.t ]) list ] list | `String of ResponseCard.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t