Module Values.RebootNodeRequestSource

Reboots a single node of a DAX cluster. The reboot action takes place as soon as possible. During the reboot, the node status is set to REBOOTING. RebootNode restarts the DAX engine process and does not remove the contents of the cache.

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

    The name of the DAX cluster containing the node to be rebooted.

    *)
  2. nodeId : String_.t;
    (*

    The system-assigned ID of the node to be rebooted.

    *)
}
Sourceval context_ : string
Sourceval make : clusterName:String_.t -> nodeId:String_.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `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