Module Values.ReplicaUpdateSource

Represents one of the following: A new replica to be added to an existing global table. New parameters for an existing replica. An existing replica to be removed from an existing global table.

Sourcetype nonrec t = {
  1. create : CreateReplicaAction.t option;
    (*

    The parameters required for creating a replica on an existing global table.

    *)
  2. delete : DeleteReplicaAction.t option;
    (*

    The name of the existing replica to be removed.

    *)
}
Sourceval make : ?create:??? -> ?delete:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `String of RegionName.t ]) list ]) 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