Module Values.InstanceCollectionSource

Contains details about a collection of instances launched in the Auto Scaling group.

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

    The instance type of the launched instances.

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

    The market type for the instances (On-Demand or Spot).

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

    The ID of the subnet where the instances were launched.

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

    The Availability Zone where the instances were launched.

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

    The Availability Zone ID where the instances in this collection were launched.

    *)
  6. instanceIds : InstanceIds.t option;
    (*

    A list of instance IDs for the successfully launched instances.

    *)
}
Sourceval make : ?instanceType:??? -> ?marketType:??? -> ?subnetId:??? -> ?availabilityZone:??? -> ?availabilityZoneId:??? -> ?instanceIds:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of XmlStringMaxLen19.t ] list | `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