Module Values_1.ResetDBClusterParameterGroupMessageSource

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

    The name of the DB cluster parameter group to reset.

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

    Specifies whether to reset all parameters in the DB cluster parameter group to their default values. You can't use this parameter if there is a list of parameter names specified for the Parameters parameter.

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

    A list of parameter names in the DB cluster parameter group to reset to the default values. You can't use this parameter if the ResetAllParameters parameter is enabled.

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