Values_0.AddClusterNodeSpecificationSourceSpecifies an instance group and the number of nodes to add to it.
type nonrec t = {instanceGroupName : ClusterInstanceGroupName.t;The name of the instance group to which you want to add nodes.
*)incrementTargetCountBy : AddClusterNodeSpecificationIncrementTargetCountByInteger.t;The number of nodes to add to the specified instance group. The total number of nodes across all instance groups in a single request cannot exceed 50.
*)availabilityZones : ClusterAvailabilityZones.t option;The availability zones in which to add nodes. Use this to target node placement in specific availability zones within a flexible instance group.
*)instanceTypes : ClusterInstanceTypes.t option;The instance types to use when adding nodes. Use this to target specific instance types within a flexible instance group.
*)}val make :
?availabilityZones:??? ->
?instanceTypes:??? ->
instanceGroupName:ClusterInstanceGroupName.t ->
incrementTargetCountBy:
AddClusterNodeSpecificationIncrementTargetCountByInteger.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Integer of
AddClusterNodeSpecificationIncrementTargetCountByInteger.t
| `List of
[> `Enum of string | `String of ClusterAvailabilityZone.t ] list
| `String of ClusterInstanceGroupName.t ])
list ]