Module Values.InstanceGroupModifyConfigSource

Modify the size or configurations of an instance group.

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

    Unique ID of the instance group to modify.

    *)
  2. instanceCount : Integer.t option;
    (*

    Target size for the instance group.

    *)
  3. eC2InstanceIdsToTerminate : EC2InstanceIdsToTerminateList.t option;
    (*

    The Amazon EC2 InstanceIds to terminate. After you terminate the instances, the instance group will not return to its original requested size.

    *)
  4. shrinkPolicy : ShrinkPolicy.t option;
    (*

    Policy for customizing shrink operations.

    *)
  5. reconfigurationType : ReconfigurationType.t option;
    (*

    Type of reconfiguration requested. Valid values are MERGE and OVERWRITE.

    *)
  6. configurations : ConfigurationList.t option;
    (*

    A list of new or modified configurations to apply for an instance group.

    *)
}
Sourceval context_ : string
Sourceval make : ?instanceCount:??? -> ?eC2InstanceIdsToTerminate:??? -> ?shrinkPolicy:??? -> ?reconfigurationType:??? -> ?configurations:??? -> instanceGroupId:XmlStringMaxLen256.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * Awso.Botodata.value) 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