Module Values.DecreaseReplicationFactorRequestSource

Removes one or more nodes from a DAX cluster. You cannot use DecreaseReplicationFactor to remove the last node in a DAX cluster. If you need to do this, use DeleteCluster instead.

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

    The name of the DAX cluster from which you want to remove nodes.

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

    The new number of nodes for the DAX cluster.

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

    The Availability Zone(s) from which to remove nodes.

    *)
  4. nodeIdsToRemove : NodeIdentifierList.t option;
    (*

    The unique identifiers of the nodes to be removed from the cluster.

    *)
}
Sourceval context_ : string
Sourceval make : ?availabilityZones:??? -> ?nodeIdsToRemove:??? -> 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