Module Types.HistoryRecord

type t = {
event_information : EventInformation.t option;
event_type : EventType.t option;
timestamp : Aws.BaseTypes.DateTime.t option;
}
val make : ?⁠event_information:EventInformation.t -> ?⁠event_type:EventType.t -> ?⁠timestamp:Aws.BaseTypes.DateTime.t -> unit -> t
val parse : Ezxmlm.nodes -> t option
val to_query : t -> Aws.Query.t
val to_json : t -> [> `Assoc of (string * Aws.Json.t) list ]
val of_json : Aws.Json.t -> t