Module Values.GlobalReplicationGroupMemberSource

A member of a Global datastore. It contains the Replication Group Id, the Amazon region and the role of the replication group.

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

    The replication group id of the Global datastore member.

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

    The Amazon region of the Global datastore member.

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

    Indicates the role of the replication group, primary or secondary.

    *)
  4. automaticFailover : AutomaticFailoverStatus.t option;
    (*

    Indicates whether automatic failover is enabled for the replication group.

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

    The status of the membership of the replication group.

    *)
}
Sourceval make : ?replicationGroupId:??? -> ?replicationGroupRegion:??? -> ?role:??? -> ?automaticFailover:??? -> ?status:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum 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