Module Values.UpdateGlossaryTermInputSource

Updates a business glossary term in Amazon DataZone. Prerequisites: Glossary term must exist in the specified domain. New name must not conflict with existing terms in the same glossary. User must have permissions on the term. The term must not be in DELETED status.

Sourcetype nonrec t = {
  1. domainIdentifier : DomainId.t;
    (*

    The identifier of the Amazon DataZone domain in which a business glossary term is to be updated.

    *)
  2. glossaryIdentifier : GlossaryTermId.t option;
    (*

    The identifier of the business glossary in which a term is to be updated.

    *)
  3. identifier : GlossaryTermId.t;
    (*

    The identifier of the business glossary term that is to be updated.

    *)
  4. name : GlossaryTermName.t option;
    (*

    The name to be updated as part of the UpdateGlossaryTerm action.

    *)
  5. shortDescription : ShortDescription.t option;
    (*

    The short description to be updated as part of the UpdateGlossaryTerm action.

    *)
  6. longDescription : LongDescription.t option;
    (*

    The long description to be updated as part of the UpdateGlossaryTerm action.

    *)
  7. termRelations : TermRelations.t option;
    (*

    The term relations to be updated as part of the UpdateGlossaryTerm action.

    *)
  8. status : GlossaryTermStatus.t option;
    (*

    The status to be updated as part of the UpdateGlossaryTerm action.

    *)
}
Sourceval context_ : string
Sourceval make : ?glossaryIdentifier:??? -> ?name:??? -> ?shortDescription:??? -> ?longDescription:??? -> ?termRelations:??? -> ?status:??? -> domainIdentifier:DomainId.t -> identifier:GlossaryTermId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of DomainId.t | `Structure of (string * [> `List of [> `String of GlossaryTermId.t ] list ]) 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