Module Values.EventLogEntrySource

Information about an entry in an event log of Amazon CodeCatalyst activity.

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

    The system-generated unique ID of the event.

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

    The name of the event.

    *)
  3. eventType : String_.t option;
    (*

    The type of the event.

    *)
  4. eventCategory : String_.t option;
    (*

    The category for the event.

    *)
  5. eventSource : String_.t option;
    (*

    The source of the event.

    *)
  6. eventTime : SyntheticTimestamp_date_time.t option;
    (*

    The time the event took place, in coordinated universal time (UTC) timestamp format as specified in RFC 3339.

    *)
  7. operationType : OperationType.t option;
    (*

    The type of the event.

    *)
  8. userIdentity : UserIdentity.t option;
    (*

    The system-generated unique ID of the user whose actions are recorded in the event.

    *)
  9. projectInformation : ProjectInformation.t option;
    (*

    Information about the project where the event occurred.

    *)
  10. requestId : String_.t option;
    (*

    The system-generated unique ID of the request.

    *)
  11. requestPayload : EventPayload.t option;
    (*

    Information about the payload of the request.

    *)
  12. responsePayload : EventPayload.t option;
    (*

    Information about the payload of the response, if any.

    *)
  13. errorCode : String_.t option;
    (*

    The code of the error, if any.

    *)
  14. sourceIpAddress : String_.t option;
    (*

    The IP address of the user whose actions are recorded in the event.

    *)
  15. userAgent : String_.t option;
    (*

    The user agent whose actions are recorded in the event.

    *)
}
Sourceval make : ?id:??? -> ?eventName:??? -> ?eventType:??? -> ?eventCategory:??? -> ?eventSource:??? -> ?eventTime:??? -> ?operationType:??? -> ?userIdentity:??? -> ?projectInformation:??? -> ?requestId:??? -> ?requestPayload:??? -> ?responsePayload:??? -> ?errorCode:??? -> ?sourceIpAddress:??? -> ?userAgent:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of String_.t | `Structure of (string * [> `Enum of string | `String of String_.t ]) list | `Timestamp of SyntheticTimestamp_date_time.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