Module Values.IncreaseReplicationFactorRequestSource

Adds one or more nodes to a DAX cluster.

Sourcetype nonrec t = {
  1. clusterName : String_.t;
    (*

    The name of the DAX cluster that will receive additional nodes.

    *)
  2. newReplicationFactor : Integer.t;
    (*

    The new number of nodes for the DAX cluster.

    *)
  3. availabilityZones : AvailabilityZoneList.t option;
    (*

    The Availability Zones (AZs) in which the cluster nodes will be created. All nodes belonging to the cluster are placed in these Availability Zones. Use this parameter if you want to distribute the nodes across multiple AZs.

    *)
}
Sourceval context_ : string
Sourceval make : ?availabilityZones:??? -> clusterName:String_.t -> newReplicationFactor:Integer.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.t | `List of [> `String of String_.t ] list | `String of String_.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