Module Values.TableReplicationConfigurationSource

The replication configuration for an individual table. This configuration defines how the table is replicated to destination tables.

Sourcetype nonrec t = {
  1. role : IAMRole.t;
    (*

    The Amazon Resource Name (ARN) of the IAM role that S3 Tables assumes to replicate the table on your behalf.

    *)
  2. rules : TableReplicationRules.t;
    (*

    An array of replication rules that define where this table should be replicated.

    *)
}
Sourceval context_ : string
Sourceval make : role:IAMRole.t -> rules:TableReplicationRules.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of TableBucketARN.t ]) list ] list ]) list ] list | `String of IAMRole.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