Module Values.ClusterParameterGroupSource

Describes a parameter group.

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

    The name of the cluster parameter group.

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

    The name of the cluster parameter group family that this cluster parameter group is compatible with.

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

    The description of the parameter group.

    *)
  4. tags : TagList.t option;
    (*

    The list of tags for the cluster parameter group.

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