Module Values_1.DescribeDBLogFilesMessageSource

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

    The customer-assigned name of the DB instance that contains the log files you want to list. Constraints: Must match the identifier of an existing DBInstance.

    *)
  2. filenameContains : Values_0.String_.t option;
    (*

    Filters the available log files for log file names that contain the specified string.

    *)
  3. fileLastWritten : Values_0.Long.t option;
    (*

    Filters the available log files for files written since the specified date, in POSIX timestamp format with milliseconds.

    *)
  4. fileSize : Values_0.Long.t option;
    (*

    Filters the available log files for files larger than the specified size.

    *)
  5. filters : Values_0.FilterList.t option;
    (*

    This parameter isn't currently supported.

    *)
  6. maxRecords : Values_0.IntegerOptional.t option;
    (*

    The maximum number of records to include in the response. If more records exist than the specified MaxRecords value, a pagination token called a marker is included in the response so you can retrieve the remaining results.

    *)
  7. marker : Values_0.String_.t option;
    (*

    The pagination token provided in the previous request. If this parameter is specified the response includes only records beyond the marker, up to MaxRecords.

    *)
}
Sourceval context_ : string
Sourceval make : ?filenameContains:??? -> ?fileLastWritten:??? -> ?fileSize:??? -> ?filters:??? -> ?maxRecords:??? -> ?marker:??? -> dBInstanceIdentifier:Values_0.String_.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Values_0.IntegerOptional.t | `List of [> `Structure of (string * [> `List of [> `String of string ] list | `String of string ]) list ] list | `Long of Values_0.Long.t | `String of Values_0.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