Module Values.InstanceGroupDetailSource

Detailed information about an instance group.

Sourcetype nonrec t = {
  1. instanceGroupId : XmlStringMaxLen256.t option;
    (*

    Unique identifier for the instance group.

    *)
  2. name : XmlStringMaxLen256.t option;
    (*

    Friendly name for the instance group.

    *)
  3. market : MarketType.t option;
    (*

    Market type of the Amazon EC2 instances used to create a cluster node.

    *)
  4. instanceRole : InstanceRoleType.t option;
    (*

    Instance group role in the cluster

    *)
  5. bidPrice : XmlStringMaxLen256.t option;
    (*

    The bid price for each Amazon EC2 Spot Instance type as defined by InstanceType. Expressed in USD. If neither BidPrice nor BidPriceAsPercentageOfOnDemandPrice is provided, BidPriceAsPercentageOfOnDemandPrice defaults to 100%.

    *)
  6. instanceType : InstanceType.t option;
    (*

    Amazon EC2 instance type.

    *)
  7. instanceRequestCount : Integer.t option;
    (*

    Target number of instances to run in the instance group.

    *)
  8. instanceRunningCount : Integer.t option;
    (*

    Actual count of running instances.

    *)
  9. state : InstanceGroupState.t option;
    (*

    State of instance group. The following values are no longer supported: STARTING, TERMINATED, and FAILED.

    *)
  10. lastStateChangeReason : XmlString.t option;
    (*

    Details regarding the state of the instance group.

    *)
  11. creationDateTime : Date.t option;
    (*

    The date/time the instance group was created.

    *)
  12. startDateTime : Date.t option;
    (*

    The date/time the instance group was started.

    *)
  13. readyDateTime : Date.t option;
    (*

    The date/time the instance group was available to the cluster.

    *)
  14. endDateTime : Date.t option;
    (*

    The date/time the instance group was terminated.

    *)
  15. customAmiId : XmlStringMaxLen256.t option;
    (*

    The custom AMI ID to use for the provisioned instance group.

    *)
}
Sourceval make : ?instanceGroupId:??? -> ?name:??? -> ?market:??? -> ?instanceRole:??? -> ?bidPrice:??? -> ?instanceType:??? -> ?instanceRequestCount:??? -> ?instanceRunningCount:??? -> ?state:??? -> ?lastStateChangeReason:??? -> ?creationDateTime:??? -> ?startDateTime:??? -> ?readyDateTime:??? -> ?endDateTime:??? -> ?customAmiId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of Integer.t | `String of XmlStringMaxLen256.t | `Timestamp of Date.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