Module Values_0.VolumeStatusEventSource

Describes a volume status event.

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

    A description of the event.

    *)
  2. eventId : String_.t option;
    (*

    The ID of this event.

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

    The type of this event.

    *)
  4. notAfter : MillisecondDateTime.t option;
    (*

    The latest end time of the event.

    *)
  5. notBefore : MillisecondDateTime.t option;
    (*

    The earliest start time of the event.

    *)
  6. instanceId : String_.t option;
    (*

    The ID of the instance associated with the event.

    *)
}
Sourceval make : ?description:??? -> ?eventId:??? -> ?eventType:??? -> ?notAfter:??? -> ?notBefore:??? -> ?instanceId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of String_.t | `Timestamp of MillisecondDateTime.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