Module Values.ModifyCacheParameterGroupMessageSource

Represents the input of a ModifyCacheParameterGroup operation.

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

    The name of the cache parameter group to modify.

    *)
  2. parameterNameValues : ParameterNameValueList.t;
    (*

    An array of parameter names and values for the parameter update. You must supply at least one parameter name and value; subsequent arguments are optional. A maximum of 20 parameters may be modified per request.

    *)
}
Sourceval context_ : string
Sourceval make : cacheParameterGroupName:String_.t -> parameterNameValues:ParameterNameValueList.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of String_.t ]) list ] 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