Module Values_1.InstanceStateChangeSource

Describes an instance state change.

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

    The ID of the instance.

    *)
  2. currentState : Values_0.InstanceState.t option;
    (*

    The current state of the instance.

    *)
  3. previousState : Values_0.InstanceState.t option;
    (*

    The previous state of the instance.

    *)
}
Sourceval make : ?instanceId:??? -> ?currentState:??? -> ?previousState:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Values_0.String_.t | `Structure of (string * [> `Enum of string | `Integer of int ]) list ]) 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