Module Values.UpdateGlossaryInputSource

Updates the business glossary in Amazon DataZone. Prerequisites: The glossary must exist in the given domain. The caller must have the datazone:UpdateGlossary permission to update it. When updating the name, the new name must be unique within the domain. The glossary must not be deleted or in a terminal state.

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

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

    *)
  2. identifier : GlossaryId.t;
    (*

    The identifier of the business glossary to be updated.

    *)
  3. name : GlossaryName.t option;
    (*

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

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

    The description to be updated as part of the UpdateGlossary action.

    *)
  5. status : GlossaryStatus.t option;
    (*

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

    *)
  6. clientToken : ClientToken.t option;
    (*

    A unique, case-sensitive identifier that is provided to ensure the idempotency of the request.

    *)
}
Sourceval context_ : string
Sourceval make : ?name:??? -> ?description:??? -> ?status:??? -> ?clientToken:??? -> domainIdentifier:DomainId.t -> identifier:GlossaryId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of DomainId.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