Module Values.PrivacyBudgetTemplateSummarySource

A summary of the privacy budget template. The summary includes membership information, collaboration information, and creation information.

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. privacyBudgetType : PrivacyBudgetType.t option;
    (*

    The type of the privacy budget template.

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

    The time at which the privacy budget template was created.

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

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

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