Module Values.EventInfoMapSource

Describes event information.

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

    The identifier of an Amazon Redshift event.

    *)
  2. eventCategories : EventCategoriesList.t option;
    (*

    The category of an Amazon Redshift event.

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

    The description of an Amazon Redshift event.

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

    The severity of the event. Values: ERROR, INFO

    *)
}
Sourceval make : ?eventId:??? -> ?eventCategories:??? -> ?eventDescription:??? -> ?severity:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of String_.t ] 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