Module Values.UpdateCollaborationInputSource

Updates collaboration metadata and can only be called by the collaboration owner.

Sourcetype nonrec t = {
  1. collaborationIdentifier : CollaborationIdentifier.t;
    (*

    The identifier for the collaboration.

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

    A human-readable identifier provided by the collaboration owner. Display names are not unique.

    *)
  3. description : CollaborationDescription.t option;
    (*

    A description of the collaboration.

    *)
  4. analyticsEngine : AnalyticsEngine.t option;
    (*

    The analytics engine. After July 16, 2025, the CLEAN_ROOMS_SQL parameter will no longer be available.

    *)
}
Sourceval context_ : string
Sourceval make : ?name:??? -> ?description:??? -> ?analyticsEngine:??? -> collaborationIdentifier:CollaborationIdentifier.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of CollaborationIdentifier.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