Module Values.RealtimeLogConfigsSource

A list of real-time log configurations.

Sourcetype nonrec t = {
  1. maxItems : Integer.t option;
    (*

    The maximum number of real-time log configurations requested.

    *)
  2. items : RealtimeLogConfigList.t option;
    (*

    Contains the list of real-time log configurations.

    *)
  3. isTruncated : Boolean.t option;
    (*

    A flag that indicates whether there are more real-time log configurations than are contained in this list.

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

    This parameter indicates where this list of real-time log configurations begins. This list includes real-time log configurations that occur after the marker.

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

    If there are more items in the list than are in this response, this element is present. It contains the value that you should use in the Marker field of a subsequent request to continue listing real-time log configurations where you left off.

    *)
}
Sourceval make : ?maxItems:??? -> ?items:??? -> ?isTruncated:??? -> ?marker:??? -> ?nextMarker:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Integer of Integer.t | `List of [> `Structure of (string * [> `List of [> `String of String_.t | `Structure of (string * [> `String of String_.t | `Structure of (string * [> `String of String_.t ]) list ]) list ] list | `Long of Long.t | `String of String_.t ]) list ] list | `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