Module Values.AuditEventSource

An event from a source outside of Amazon Web Services that you want CloudTrail to log.

Sourcetype nonrec t = {
  1. eventData : String_.t;
    (*

    The content of an audit event that comes from the event, such as userIdentity, userAgent, and eventSource.

    *)
  2. eventDataChecksum : String_.t option;
    (*

    A checksum is a base64-SHA256 algorithm that helps you verify that CloudTrail receives the event that matches with the checksum. Calculate the checksum by running a command like the following: printf %s $eventdata | openssl dgst -binary -sha256 | base64

    *)
  3. id : Uuid.t;
    (*

    The original event ID from the source event.

    *)
}
Sourceval context_ : string
Sourceval make : ?eventDataChecksum:??? -> eventData:String_.t -> id:Uuid.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.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