Module Values.ResetDBClusterParameterGroupMessageSource

Represents the input to ResetDBClusterParameterGroup.

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

    The name of the cluster parameter group to reset.

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

    A value that is set to true to reset all parameters in the cluster parameter group to their default values, and false otherwise. You can't use this parameter if there is a list of parameter names specified for the Parameters parameter.

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

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

    *)
}
Sourceval context_ : string
Sourceval make : ?resetAllParameters:??? -> ?parameters:??? -> dBClusterParameterGroupName: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