Module Values_1.SpotInstanceStatusSource

Describes the status of a Spot Instance request.

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

    The status code. For a list of status codes, see Spot request status codes in the Amazon EC2 User Guide.

    *)
  2. message : Values_0.String_.t option;
    (*

    The description for the status code.

    *)
  3. updateTime : Values_0.DateTime.t option;
    (*

    The date and time of the most recent status update, in UTC format (for example, YYYY-MM-DDTHH:MM:SSZ).

    *)
}
Sourceval make : ?code:??? -> ?message:??? -> ?updateTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Values_0.String_.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