Module Values_0.DescribeDBLogFilesDetailsSource

This data type is used as a response element to DescribeDBLogFiles.

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

    The name of the log file for the specified DB instance.

    *)
  2. lastWritten : Long.t option;
    (*

    A POSIX timestamp when the last log entry was written.

    *)
  3. size : Long.t option;
    (*

    The size, in bytes, of the log file for the specified DB instance.

    *)
}
Sourceval make : ?logFileName:??? -> ?lastWritten:??? -> ?size:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of Long.t | `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