Module Values.UpdateGlossaryOutputSource

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. domainId : DomainId.t option;
    (*

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

    *)
  2. id : GlossaryId.t option;
    (*

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

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

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

    *)
  4. owningProjectId : ProjectId.t option;
    (*

    The identifier of the project in which to update a business glossary.

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

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

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

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

    *)
  7. usageRestrictions : GlossaryUsageRestrictions.t option;
    (*

    The usage restriction of the restricted glossary.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `ConflictException of ConflictException.t
  3. | `InternalServerException of InternalServerException.t
  4. | `ResourceNotFoundException of ResourceNotFoundException.t
  5. | `ThrottlingException of ThrottlingException.t
  6. | `UnauthorizedException of UnauthorizedException.t
  7. | `ValidationException of ValidationException.t
  8. | `Unknown_operation_error of string * string option
]
Sourceval make : ?domainId:??? -> ?id:??? -> ?name:??? -> ?owningProjectId:??? -> ?description:??? -> ?status:??? -> ?usageRestrictions:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.t | `ConflictException of ConflictException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `UnauthorizedException of UnauthorizedException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AccessDeniedException of AccessDeniedException.t | `ConflictException of ConflictException.t | `InternalServerException of InternalServerException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `ThrottlingException of ThrottlingException.t | `UnauthorizedException of UnauthorizedException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Enum of string ] list | `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