Module Values.PutTableReplicationRequestSource

Creates or updates the replication configuration for a specific table. This operation allows you to define table-level replication independently of bucket-level replication, providing granular control over which tables are replicated and where. Permissions You must have the s3tables:PutTableReplication permission to use this operation. The IAM role specified in the configuration must have permissions to read from the source table and write to all destination tables. You must also have the following permissions: s3tables:GetTable permission on the source table being replicated. s3tables:CreateTable permission for the destination. s3tables:CreateNamespace permission for the destination. s3tables:GetTableMaintenanceConfig permission for the source table. s3tables:PutTableMaintenanceConfig permission for the destination table. You must have iam:PassRole permission with condition allowing roles to be passed to replication.s3tables.amazonaws.com.

Sourcetype nonrec t = {
  1. tableArn : TableARN.t;
    (*

    The Amazon Resource Name (ARN) of the source table.

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

    A version token from a previous GetTableReplication call. Use this token to ensure you're updating the expected version of the configuration.

    *)
  3. configuration : TableReplicationConfiguration.t;
    (*

    The replication configuration to apply to the table, including the IAM role and replication rules.

    *)
}
Sourceval context_ : string
Sourceval make : ?versionToken:??? -> tableArn:TableARN.t -> configuration:TableReplicationConfiguration.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of TableARN.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 ]) 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