Module Values.UpdateThesaurusRequestSource

Updates a thesaurus for an index.

Sourcetype nonrec t = {
  1. id : ThesaurusId.t;
    (*

    The identifier of the thesaurus you want to update.

    *)
  2. name : ThesaurusName.t option;
    (*

    A new name for the thesaurus.

    *)
  3. indexId : IndexId.t;
    (*

    The identifier of the index for the thesaurus.

    *)
  4. description : Description.t option;
    (*

    A new description for the thesaurus.

    *)
  5. roleArn : RoleArn.t option;
    (*

    An IAM role that gives Amazon Kendra permissions to access thesaurus file specified in SourceS3Path.

    *)
  6. sourceS3Path : S3Path.t option;
}
Sourceval context_ : string
Sourceval make : ?name:??? -> ?description:??? -> ?roleArn:??? -> ?sourceS3Path:??? -> id:ThesaurusId.t -> indexId:IndexId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of ThesaurusId.t | `Structure of (string * [> `String of S3BucketName.t ]) list ]) 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