Module Values.UpdateParameterGroupRequestSource

Modifies the parameters of a parameter group. You can modify up to 20 parameters in a single request by submitting a list parameter name and value pairs.

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

    The name of the parameter group.

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

    An array of name-value pairs for the parameters in the group. Each element in the array represents a single parameter. record-ttl-millis and query-ttl-millis are the only supported parameter names. For more details, see Configuring TTL Settings.

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