Module Values_2.ActiveInstanceSource

Describes a running instance in a Spot Fleet.

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

    The ID of the instance.

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

    The instance type.

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

    The ID of the Spot Instance request.

    *)
  4. instanceHealth : Values_1.InstanceHealthStatus.t option;
    (*

    The health status of the instance. If the status of either the instance status check or the system status check is impaired, the health status of the instance is unhealthy. Otherwise, the health status is healthy.

    *)
}
Sourceval make : ?instanceId:??? -> ?instanceType:??? -> ?spotInstanceRequestId:??? -> ?instanceHealth:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of Values_0.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