Module Values.CollaborationSummarySource

The metadata of the collaboration.

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

    The identifier for the collaboration.

    *)
  2. arn : CollaborationArn.t option;
    (*

    The ARN of the collaboration.

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

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

    *)
  4. creatorAccountId : AccountId.t option;
    (*

    The identifier used to reference members of the collaboration. Currently only supports Amazon Web Services account ID.

    *)
  5. creatorDisplayName : DisplayName.t option;
    (*

    The display name of the collaboration creator.

    *)
  6. createTime : Timestamp.t option;
    (*

    The time when the collaboration was created.

    *)
  7. updateTime : Timestamp.t option;
    (*

    The time the collaboration metadata was last updated.

    *)
  8. memberStatus : MemberStatus.t option;
    (*

    The status of a member in a collaboration.

    *)
  9. membershipId : UUID.t option;
    (*

    The identifier of a member in a collaboration.

    *)
  10. membershipArn : MembershipArn.t option;
    (*

    The ARN of a member in a collaboration.

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

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

    *)
}
Sourceval make : ?id:??? -> ?arn:??? -> ?name:??? -> ?creatorAccountId:??? -> ?creatorDisplayName:??? -> ?createTime:??? -> ?updateTime:??? -> ?memberStatus:??? -> ?membershipId:??? -> ?membershipArn:??? -> ?analyticsEngine:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of UUID.t | `Timestamp of Timestamp.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