Module Values.PrivacyBudgetSummarySource

An array that summaries the specified privacy budget. This summary includes collaboration information, creation information, membership information, and privacy budget information.

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

    The unique identifier of the privacy budget.

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

    The unique identifier of the privacy budget template.

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

    The ARN of the privacy budget template.

    *)
  4. membershipId : MembershipIdentifier.t option;
    (*

    The identifier for a membership resource.

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

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

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

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

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

    The ARN of the collaboration that contains this privacy budget.

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

    Specifies the type of the privacy budget.

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

    The time at which the privacy budget was created.

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

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

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

    The provided privacy budget.

    *)
}
Sourceval make : ?id:??? -> ?privacyBudgetTemplateId:??? -> ?privacyBudgetTemplateArn:??? -> ?membershipId:??? -> ?membershipArn:??? -> ?collaborationId:??? -> ?collaborationArn:??? -> ?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