Values.GetBuiltinIntentResponseSourceReturns information about a built-in intent. This operation requires permission for the lex:GetBuiltinIntent action.
type nonrec t = {signature : BuiltinIntentSignature.t option;The unique identifier for a built-in intent.
*)supportedLocales : LocaleList.t option;A list of locales that the intent supports.
*)slots : BuiltinIntentSlotList.t option;An array of BuiltinIntentSlot objects, one entry for each slot type in the intent.
*)}type nonrec error = [ | `BadRequestException of BadRequestException.t| `InternalFailureException of InternalFailureException.t| `LimitExceededException of LimitExceededException.t| `NotFoundException of NotFoundException.t| `Unknown_operation_error of string * string option ]val 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 ]val 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 ]val 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 ]