Module Values.DifferentialPrivacyTemplateUpdateParametersSource

The epsilon and noise parameter values that you want to update in the differential privacy template.

Sourcetype nonrec t = {
  1. epsilon : Epsilon.t option;
    (*

    The updated epsilon value that you want to use.

    *)
  2. usersNoisePerQuery : UsersNoisePerQuery.t option;
    (*

    The updated value of noise added per query. It is measured in terms of the number of users whose contributions you want to obscure. This value governs the rate at which the privacy budget is depleted.

    *)
}
Sourceval make : ?epsilon:??? -> ?usersNoisePerQuery:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Epsilon.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