Module Values.ParameterGroupStatusSource

The status of a parameter group.

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

    The name of the parameter group.

    *)
  2. parameterApplyStatus : String_.t option;
    (*

    The status of parameter updates.

    *)
  3. nodeIdsToReboot : NodeIdentifierList.t option;
    (*

    The node IDs of one or more nodes to be rebooted.

    *)
}
Sourceval make : ?parameterGroupName:??? -> ?parameterApplyStatus:??? -> ?nodeIdsToReboot:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of String_.t ] 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