Module Values.AwsRdsDbStatusInfoSource

Information about the status of a read replica.

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

    The type of status. For a read replica, the status type is read replication.

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

    Whether the read replica instance is operating normally.

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

    The status of the read replica instance.

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

    If the read replica is currently in an error state, provides the error details.

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