Module Values.GlobalTableWitnessGroupUpdateSource

Represents one of the following: A new witness to be added to a new global table. An existing witness to be removed from an existing global table. You can configure one witness per MRSC global table.

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

    Specifies a witness Region to be added to a new MRSC global table. The witness must be added when creating the MRSC global table.

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

    Specifies a witness Region to be removed from an existing global table. Must be done in conjunction with removing a replica. The deletion of both a witness and replica converts the remaining replica to a single-Region DynamoDB table.

    *)
}
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