Module Values_0.AddClusterNodeSpecificationSource

Specifies an instance group and the number of nodes to add to it.

Sourcetype nonrec t = {
  1. instanceGroupName : ClusterInstanceGroupName.t;
    (*

    The name of the instance group to which you want to add nodes.

    *)
  2. 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.

    *)
  3. 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.

    *)
  4. instanceTypes : ClusterInstanceTypes.t option;
    (*

    The instance types to use when adding nodes. Use this to target specific instance types within a flexible instance group.

    *)
}
Sourceval context_ : string
Sourceval make : ?availabilityZones:??? -> ?instanceTypes:??? -> instanceGroupName:ClusterInstanceGroupName.t -> incrementTargetCountBy: AddClusterNodeSpecificationIncrementTargetCountByInteger.t -> unit -> t
Sourceval 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 ]
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