Module Values_2.VocabularySummarySource

Contains summary information about the custom vocabulary.

Sourcetype nonrec t = {
  1. name : Values_1.VocabularyName.t option;
    (*

    A unique name of the custom vocabulary.

    *)
  2. id : Values_0.VocabularyId.t option;
    (*

    The identifier of the custom vocabulary.

    *)
  3. arn : Values_0.ARN.t option;
    (*

    The Amazon Resource Name (ARN) of the custom vocabulary.

    *)
  4. languageCode : Values_0.VocabularyLanguageCode.t option;
    (*

    The language code of the vocabulary entries. For a list of languages and their corresponding language codes, see What is Amazon Transcribe?

    *)
  5. state : Values_1.VocabularyState.t option;
    (*

    The current state of the custom vocabulary.

    *)
  6. lastModifiedTime : Values_1.VocabularyLastModifiedTime.t option;
    (*

    The timestamp when the custom vocabulary was last modified.

    *)
  7. failureReason : Values_1.VocabularyFailureReason.t option;
    (*

    The reason why the custom vocabulary was not created.

    *)
}
Sourceval make : ?name:??? -> ?id:??? -> ?arn:??? -> ?languageCode:??? -> ?state:??? -> ?lastModifiedTime:??? -> ?failureReason:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Values_1.VocabularyName.t | `Timestamp of Values_1.VocabularyLastModifiedTime.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