Module Values_1.VocabularySource

Contains information about a custom vocabulary.

Sourcetype nonrec t = {
  1. name : 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 : VocabularyState.t option;
    (*

    The current state of the custom vocabulary.

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

    The timestamp when the custom vocabulary was last modified.

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

    The reason why the custom vocabulary was not created.

    *)
  8. content : VocabularyContent.t option;
    (*

    The content of the custom vocabulary in plain-text format with a table of values. Each row in the table represents a word or a phrase, described with Phrase, IPA, SoundsLike, and DisplayAs fields. Separate the fields with TAB characters. For more information, see Create a custom vocabulary using a table.

    *)
  9. tags : Values_0.TagMap.t option;
    (*

    The tags used to organize, track, or control access for this resource. For example, { "Tags": {"key1":"value1", "key2":"value2"} }.

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