Module Values.ParameterGroupSource

A named set of parameters that are applied to all of the nodes in a DAX cluster.

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

    The name of the parameter group.

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

    A description of the parameter group.

    *)
}
Sourceval make : ?parameterGroupName:??? -> ?description:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `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