Module Values.GetBuiltinIntentResponseSource

Returns information about a built-in intent. This operation requires permission for the lex:GetBuiltinIntent action.

Sourcetype nonrec t = {
  1. signature : BuiltinIntentSignature.t option;
    (*

    The unique identifier for a built-in intent.

    *)
  2. supportedLocales : LocaleList.t option;
    (*

    A list of locales that the intent supports.

    *)
  3. slots : BuiltinIntentSlotList.t option;
    (*

    An array of BuiltinIntentSlot objects, one entry for each slot type in the intent.

    *)
}
Sourcetype nonrec error = [
  1. | `BadRequestException of BadRequestException.t
  2. | `InternalFailureException of InternalFailureException.t
  3. | `LimitExceededException of LimitExceededException.t
  4. | `NotFoundException of NotFoundException.t
  5. | `Unknown_operation_error of string * string option
]
Sourceval make : ?signature:??? -> ?supportedLocales:??? -> ?slots:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `BadRequestException of BadRequestException.t | `InternalFailureException of InternalFailureException.t | `LimitExceededException of LimitExceededException.t | `NotFoundException of NotFoundException.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `BadRequestException of BadRequestException.t | `InternalFailureException of InternalFailureException.t | `LimitExceededException of LimitExceededException.t | `NotFoundException of NotFoundException.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Enum of string | `Structure of (string * [> `String of String_.t ]) list ] list | `String of BuiltinIntentSignature.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