Module Values.CollaborationPrivacyBudgetTemplateSummarySource

A summary of the collaboration's privacy budget template. This summary includes information about who created the privacy budget template and what collaborations it belongs to.

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

    The unique identifier of the collaboration privacy budget template.

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

    The ARN of the collaboration privacy budget template.

    *)
  3. collaborationId : UUID.t option;
    (*

    The unique identifier of the collaboration that contains this collaboration privacy budget template.

    *)
  4. collaborationArn : CollaborationArn.t option;
    (*

    The ARN of the collaboration that contains this collaboration privacy budget template.

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

    The unique identifier of the account that created this collaboration privacy budget template.

    *)
  6. privacyBudgetType : PrivacyBudgetType.t option;
    (*

    The type of the privacy budget template.

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

    The time at which the collaboration privacy budget template was created.

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

    The most recent time at which the collaboration privacy budget template was updated.

    *)
}
Sourceval make : ?id:??? -> ?arn:??? -> ?collaborationId:??? -> ?collaborationArn:??? -> ?creatorAccountId:??? -> ?privacyBudgetType:??? -> ?createTime:??? -> ?updateTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of PrivacyBudgetTemplateIdentifier.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