Module Values.AuditEventSource

Represents the content of a particular audit event.

Sourcetype nonrec t = {
  1. eventId : AuditEventId.t option;
    (*

    Unique identifier of a case audit history event.

    *)
  2. type_ : AuditEventType.t option;
    (*

    The type of audit history event. Valid Values: Case.Created | Case.Updated | RelatedItem.Created | RelatedItem.Updated | RelatedItem.Deleted

    *)
  3. relatedItemType : RelatedItemType.t option;
    (*

    The Type of the related item.

    *)
  4. performedTime : AuditEventDateTime.t option;
    (*

    Time at which an Audit History event took place.

    *)
  5. fields : AuditEventFieldList.t option;
    (*

    A list of Case Audit History event fields.

    *)
  6. performedBy : AuditEventPerformedBy.t option;
    (*

    Information of the user which performed the audit.

    *)
}
Sourceval make : ?eventId:??? -> ?type_:??? -> ?relatedItemType:??? -> ?performedTime:??? -> ?fields:??? -> ?performedBy:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `String of AuditEventFieldId.t | `Structure of (string * [> `Boolean of Boolean.t | `Double of Double.t | `String of AuditEventFieldValueUnionStringValueString.t | `Structure of 'a list ]) list ]) list ] list | `String of AuditEventId.t | `Structure of (string * [> `String of IamPrincipalArn.t | `Structure of (string * [> `String of UserArn.t ]) list ]) list | `Timestamp of AuditEventDateTime.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