Module Values.DBClusterMemberSource

Contains information about an instance that is part of a DB cluster.

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

    Specifies the instance identifier for this member of the DB cluster.

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

    Value that is true if the cluster member is the primary instance for the DB cluster and false otherwise.

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

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

    *)
  4. promotionTier : IntegerOptional.t option;
    (*

    A value that specifies the order in which a Read Replica is promoted to the primary instance after a failure of the existing primary instance.

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