Module Values.LaunchInstancesErrorSource

Contains details about errors encountered during instance launch attempts.

Sourcetype nonrec t = {
  1. instanceType : XmlStringMaxLen255.t option;
    (*

    The instance type that failed to launch.

    *)
  2. marketType : XmlStringMaxLen64.t option;
    (*

    The market type (On-Demand or Spot) that encountered the launch error.

    *)
  3. subnetId : XmlStringMaxLen255.t option;
    (*

    The subnet ID where the instance launch was attempted.

    *)
  4. availabilityZone : XmlStringMaxLen255.t option;
    (*

    The Availability Zone where the instance launch was attempted.

    *)
  5. availabilityZoneId : XmlStringMaxLen255.t option;
    (*

    The Availability Zone ID where the launch error occurred.

    *)
  6. errorCode : XmlStringMaxLen64.t option;
    (*

    The error code representing the type of error encountered (e.g., InsufficientInstanceCapacity).

    *)
  7. errorMessage : XmlString.t option;
    (*

    A descriptive message providing details about the error encountered during the launch attempt.

    *)
}
Sourceval make : ?instanceType:??? -> ?marketType:??? -> ?subnetId:??? -> ?availabilityZone:??? -> ?availabilityZoneId:??? -> ?errorCode:??? -> ?errorMessage:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of XmlStringMaxLen255.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