Module Values.AwsRdsDbClusterMemberSource

Information about an instance in the DB cluster.

Sourcetype nonrec t = {
  1. isClusterWriter : Boolean.t option;
    (*

    Whether the cluster member is the primary instance for the DB cluster.

    *)
  2. promotionTier : Integer.t option;
    (*

    Specifies the order in which an Aurora replica is promoted to the primary instance when the existing primary instance fails.

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

    The instance identifier for this member of the DB cluster.

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

    The status of the DB cluster parameter group for this member of the DB cluster.

    *)
}
Sourceval make : ?isClusterWriter:??? -> ?promotionTier:??? -> ?dbInstanceIdentifier:??? -> ?dbClusterParameterGroupStatus:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Integer of Integer.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