Module Values.RebootCacheClusterMessageSource

Represents the input of a RebootCacheCluster operation.

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

    The cluster identifier. This parameter is stored as a lowercase string.

    *)
  2. cacheNodeIdsToReboot : CacheNodeIdsList.t;
    (*

    A list of cache node IDs to reboot. A node ID is a numeric identifier (0001, 0002, etc.). To reboot an entire cluster, specify all of the cache node IDs.

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