Module Values_2.SearchVocabulariesRequestSource

Searches for vocabularies within a specific Amazon Connect instance using State, NameStartsWith, and LanguageCode.

Sourcetype nonrec t = {
  1. instanceId : Values_0.InstanceId.t;
    (*

    The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.

    *)
  2. maxResults : Values_1.MaxResult100.t option;
    (*

    The maximum number of results to return per page.

    *)
  3. nextToken : Values_1.VocabularyNextToken.t option;
    (*

    The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.

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

    The current state of the custom vocabulary.

    *)
  5. nameStartsWith : Values_1.VocabularyName.t option;
    (*

    The starting pattern of the name of the vocabulary.

    *)
  6. 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?

    *)
}
Sourceval context_ : string
Sourceval make : ?maxResults:??? -> ?nextToken:??? -> ?state:??? -> ?nameStartsWith:??? -> ?languageCode:??? -> instanceId:Values_0.InstanceId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of Values_1.MaxResult100.t | `String of Values_0.InstanceId.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