Module Values.ResetClusterParameterGroupMessageSource

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

    The name of the cluster parameter group to be reset.

    *)
  2. resetAllParameters : Boolean.t option;
    (*

    If true, all parameters in the specified parameter group will be reset to their default values. Default: true

    *)
  3. parameters : ParametersList.t option;
    (*

    An array of names of parameters to be reset. If ResetAllParameters option is not used, then at least one parameter name must be supplied. Constraints: A maximum of 20 parameters can be reset in a single request.

    *)
}
Sourceval context_ : string
Sourceval make : ?resetAllParameters:??? -> ?parameters:??? -> parameterGroupName:String_.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `List of [> `Structure of (string * [> `Boolean of Boolean.t | `Enum 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