Module Values.AwsRedshiftClusterClusterParameterStatusSource

The status of a parameter in a cluster parameter group for an Amazon Redshift cluster.

Sourcetype nonrec t = {
  1. parameterName : NonEmptyString.t option;
    (*

    The name of the parameter.

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

    The status of the parameter. Indicates whether the parameter is in sync with the database, waiting for a cluster reboot, or encountered an error when it was applied. Valid values: in-sync | pending-reboot | applying | invalid-parameter | apply-deferred | apply-error | unknown-error

    *)
  3. parameterApplyErrorDescription : NonEmptyString.t option;
    (*

    The error that prevented the parameter from being applied to the database.

    *)
}
Sourceval make : ?parameterName:??? -> ?parameterApplyStatus:??? -> ?parameterApplyErrorDescription:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of NonEmptyString.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