Module Values.PrivacyBudgetTemplateSource

An object that defines the privacy budget template.

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

    The unique identifier of the privacy budget template.

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

    The ARN of the privacy budget template.

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

    The identifier for a membership resource.

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

    The Amazon Resource Name (ARN) of the member who created the privacy budget template.

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

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

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

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

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

    The time at which the privacy budget template was created.

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

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

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

    Specifies the type of the privacy budget template.

    *)
  10. autoRefresh : PrivacyBudgetTemplateAutoRefresh.t option;
    (*

    How often the privacy budget refreshes. If you plan to regularly bring new data into the collaboration, use CALENDAR_MONTH to automatically get a new privacy budget for the collaboration every calendar month. Choosing this option allows arbitrary amounts of information to be revealed about rows of the data when repeatedly queried across refreshes. Avoid choosing this if the same rows will be repeatedly queried between privacy budget refreshes.

    *)
  11. parameters : PrivacyBudgetTemplateParametersOutput.t option;
    (*

    Specifies the epsilon and noise parameters for the privacy budget template.

    *)
}
Sourceval make : ?id:??? -> ?arn:??? -> ?membershipId:??? -> ?membershipArn:??? -> ?collaborationId:??? -> ?collaborationArn:??? -> ?createTime:??? -> ?updateTime:??? -> ?privacyBudgetType:??? -> ?autoRefresh:??? -> ?parameters:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of PrivacyBudgetTemplateIdentifier.t | `Structure of (string * [> `Structure of (string * [> `Integer of Epsilon.t | `List of [> `Structure of (string * [> `Enum of string | `Integer of Budget.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