Module Values.GetIntentRequestSource

Returns information about an intent. In addition to the intent name, you must specify the intent version. This operation requires permissions to perform the lex:GetIntent action.

Sourcetype nonrec t = {
  1. name : IntentName.t;
    (*

    The name of the intent. The name is case sensitive.

    *)
  2. version : Version.t;
    (*

    The version of the intent.

    *)
}
Sourceval context_ : string
Sourceval make : name:IntentName.t -> version:Version.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of IntentName.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