Module Values_0.DBParameterGroupStatusSource

The status of the DB parameter group. This data type is used as a response element in the following actions: CreateDBInstance CreateDBInstanceReadReplica DeleteDBInstance ModifyDBInstance RebootDBInstance RestoreDBInstanceFromDBSnapshot

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

    The name of the DB parameter group.

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

    The status of parameter updates. Valid values are: applying: The parameter group change is being applied to the database. failed-to-apply: The parameter group is in an invalid state. in-sync: The parameter group change is synchronized with the database. pending-database-upgrade: The parameter group change will be applied after the DB instance is upgraded. pending-reboot: The parameter group change will be applied after the DB instance reboots.

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