Module Values.ClusterParameterGroupStatusSource

Describes the status of a parameter group.

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

    The name of the cluster parameter group.

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

    The status of parameter updates.

    *)
  3. clusterParameterStatusList : ClusterParameterStatusList.t option;
    (*

    The list of parameter statuses. For more information about parameters and parameter groups, go to Amazon Redshift Parameter Groups in the Amazon Redshift Cluster Management Guide.

    *)
}
Sourceval make : ?parameterGroupName:??? -> ?parameterApplyStatus:??? -> ?clusterParameterStatusList:??? -> 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