Module Values.CollaborationPrivacyBudgetSummarySource

A summary of the collaboration privacy budgets. This summary includes the collaboration information, creation information, epsilon provided, and utility in terms of aggregations.

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

    The unique identifier of the collaboration privacy budget.

    *)
  2. privacyBudgetTemplateId : PrivacyBudgetTemplateIdentifier.t option;
    (*

    The unique identifier of the collaboration privacy budget template.

    *)
  3. privacyBudgetTemplateArn : PrivacyBudgetTemplateArn.t option;
    (*

    The ARN of the collaboration privacy budget template.

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

    The unique identifier of the collaboration that includes this privacy budget.

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

    The ARN of the collaboration that includes this privacy budget.

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

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

    *)
  7. type_ : PrivacyBudgetType.t option;
    (*

    The type of privacy budget template.

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

    The time at which the privacy budget was created.

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

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

    *)
  10. budget : PrivacyBudget.t option;
    (*

    The includes epsilon provided and utility in terms of aggregations.

    *)
}
Sourceval make : ?id:??? -> ?privacyBudgetTemplateId:??? -> ?privacyBudgetTemplateArn:??? -> ?collaborationId:??? -> ?collaborationArn:??? -> ?creatorAccountId:??? -> ?type_:??? -> ?createTime:??? -> ?updateTime:??? -> ?budget:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of UUID.t | `Structure of (string * [> `Structure of (string * [> `Integer of Epsilon.t | `List of [> `Structure of (string * [> `Enum of string | `Integer of DifferentialPrivacyPrivacyBudgetAggregationMaxCountInteger.t | `Timestamp of Timestamp.t ]) list ] list | `String of BudgetedResourceArn.t ]) list ]) list | `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