Module Values.GetRelationalDatabaseEventsRequestSource

Returns a list of events for a specific database in Amazon Lightsail.

Sourcetype nonrec t = {
  1. relationalDatabaseName : ResourceName.t;
    (*

    The name of the database from which to get events.

    *)
  2. durationInMinutes : Integer.t option;
    (*

    The number of minutes in the past from which to retrieve events. For example, to get all events from the past 2 hours, enter 120. Default: 60 The minimum is 1 and the maximum is 14 days (20160 minutes).

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

    The token to advance to the next page of results from your request. To get a page token, perform an initial GetRelationalDatabaseEvents request. If your results are paginated, the response will return a next page token that you can specify as the page token in a subsequent request.

    *)
}
Sourceval context_ : string
Sourceval make : ?durationInMinutes:??? -> ?pageToken:??? -> relationalDatabaseName:ResourceName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.t | `String of ResourceName.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