Module Values.NotificationSource

The notification that informs a user of an update in Audit Manager. For example, this includes the notification that's sent when a control set is delegated for review.

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

    The unique identifier for the notification.

    *)
  2. assessmentId : UUID.t option;
    (*

    The identifier for the assessment.

    *)
  3. assessmentName : AssessmentName.t option;
    (*

    The name of the related assessment.

    *)
  4. controlSetId : ControlSetId.t option;
    (*

    The identifier for the control set.

    *)
  5. controlSetName : NonEmptyString.t option;
    (*

    Specifies the name of the control set that the notification is about.

    *)
  6. description : NonEmptyString.t option;
    (*

    The description of the notification.

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

    The time when the notification was sent.

    *)
  8. source : NonEmptyString.t option;
    (*

    The sender of the notification.

    *)
}
Sourceval make : ?id:??? -> ?assessmentId:??? -> ?assessmentName:??? -> ?controlSetId:??? -> ?controlSetName:??? -> ?description:??? -> ?eventTime:??? -> ?source:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of TimestampUUID.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