Module Values_1.InstanceStatusEventSource

Describes a scheduled event for an instance.

Sourcetype nonrec t = {
  1. instanceEventId : Values_0.InstanceEventId.t option;
    (*

    The ID of the event.

    *)
  2. code : Values_0.EventCode.t option;
    (*

    The event code.

    *)
  3. description : Values_0.String_.t option;
    (*

    A description of the event. After a scheduled event is completed, it can still be described for up to a week. If the event has been completed, this description starts with the following text: [Completed].

    *)
  4. notAfter : Values_0.DateTime.t option;
    (*

    The latest scheduled end time for the event.

    *)
  5. notBefore : Values_0.DateTime.t option;
    (*

    The earliest scheduled start time for the event.

    *)
  6. notBeforeDeadline : Values_0.DateTime.t option;
    (*

    The deadline for starting the event.

    *)
}
Sourceval make : ?instanceEventId:??? -> ?code:??? -> ?description:??? -> ?notAfter:??? -> ?notBefore:??? -> ?notBeforeDeadline:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Values_0.InstanceEventId.t | `Timestamp of Values_0.DateTime.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