Module Values.DBInstanceStatusInfoSource

Provides a list of status information for a DB instance.

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

    This value is currently "read replication."

    *)
  2. normal : Boolean.t option;
    (*

    Boolean value that is true if the instance is operating normally, or false if the instance is in an error state.

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

    Status of the DB instance. For a StatusType of read replica, the values can be replicating, error, stopped, or terminated.

    *)
  4. message : String_.t option;
    (*

    Details of the error if there is an error for the instance. If the instance is not in an error state, this value is blank.

    *)
}
Sourceval make : ?statusType:??? -> ?normal:??? -> ?status:??? -> ?message:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `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