Module Values.DescribeCustomVocabularyMetadataResponseSource

Provides metadata information about a custom vocabulary.

Sourcetype nonrec t = {
  1. botId : Id.t option;
    (*

    The identifier of the bot that contains the custom vocabulary.

    *)
  2. botVersion : BotVersion.t option;
    (*

    The version of the bot that contains the custom vocabulary to describe.

    *)
  3. localeId : LocaleId.t option;
    (*

    The locale that contains the custom vocabulary to describe.

    *)
  4. customVocabularyStatus : CustomVocabularyStatus.t option;
    (*

    The status of the custom vocabulary. If the status is Ready the custom vocabulary is ready to use.

    *)
  5. creationDateTime : Timestamp.t option;
    (*

    The date and time that the custom vocabulary was created.

    *)
  6. lastUpdatedDateTime : Timestamp.t option;
    (*

    The date and time that the custom vocabulary was last updated.

    *)
}
Sourcetype nonrec error = [
  1. | `InternalServerException of InternalServerException.t
  2. | `ResourceNotFoundException of ResourceNotFoundException.t
  3. | `ServiceQuotaExceededException of ServiceQuotaExceededException.t
  4. | `ThrottlingException of ThrottlingException.t
  5. | `ValidationException of ValidationException.t
  6. | `Unknown_operation_error of string * string option
]
Sourceval make : ?botId:??? -> ?botVersion:??? -> ?localeId:??? -> ?customVocabularyStatus:??? -> ?creationDateTime:??? -> ?lastUpdatedDateTime:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ServiceQuotaExceededException of ServiceQuotaExceededException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ServiceQuotaExceededException of ServiceQuotaExceededException.t | `ThrottlingException of ThrottlingException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Id.t | `Timestamp of Timestamp.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