Module Values.ResetDBParameterGroupMessageSource

Modifies the parameters of a DB parameter group to the engine/system default value. To reset specific parameters, provide a list of the following: ParameterName and ApplyMethod. To reset the entire DB parameter group, specify the DBParameterGroup name and ResetAllParameters parameters. When resetting the entire group, dynamic parameters are updated immediately and static parameters are set to pending-reboot to take effect on the next DB instance restart or RebootDBInstance request.

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

    The name of the DB parameter group. Constraints: Must match the name of an existing DBParameterGroup.

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

    Specifies whether (true) or not (false) to reset all parameters in the DB parameter group to default values. Default: true

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

    To reset the entire DB parameter group, specify the DBParameterGroup name and ResetAllParameters parameters. To reset specific parameters, provide a list of the following: ParameterName and ApplyMethod. A maximum of 20 parameters can be modified in a single request. Valid Values (for Apply method): pending-reboot

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