Module Values.ProfileNotificationSummarySource

The profile notification summary.

Sourcetype nonrec t = {
  1. currentProfileVersion : ProfileVersion.t option;
    (*

    The current profile version.

    *)
  2. latestProfileVersion : ProfileVersion.t option;
    (*

    The latest profile version.

    *)
  3. type_ : ProfileNotificationType.t option;
    (*

    Type of notification.

    *)
  4. profileArn : ProfileArn.t option;
    (*

    The profile ARN.

    *)
  5. profileName : ProfileName.t option;
    (*

    The profile name.

    *)
  6. workloadId : WorkloadId.t option;
  7. workloadName : WorkloadName.t option;
}
Sourceval make : ?currentProfileVersion:??? -> ?latestProfileVersion:??? -> ?type_:??? -> ?profileArn:??? -> ?profileName:??? -> ?workloadId:??? -> ?workloadName:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ProfileVersion.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