Module Values.GetTableBucketReplicationResponseSource

Retrieves the replication configuration for a table bucket.This operation returns the IAM role, versionToken, and replication rules that define how tables in this bucket are replicated to other buckets. Permissions You must have the s3tables:GetTableBucketReplication permission to use this operation.

Sourcetype nonrec t = {
  1. versionToken : VersionToken.t option;
    (*

    A version token that represents the current state of the replication configuration. Use this token when updating the configuration to ensure consistency.

    *)
  2. configuration : TableBucketReplicationConfiguration.t option;
    (*

    The replication configuration for the table bucket, including the IAM role and replication rules.

    *)
}
Sourcetype nonrec error = [
  1. | `AccessDeniedException of AccessDeniedException.t
  2. | `BadRequestException of BadRequestException.t
  3. | `ConflictException of ConflictException.t
  4. | `ForbiddenException of ForbiddenException.t
  5. | `InternalServerErrorException of InternalServerErrorException.t
  6. | `NotFoundException of NotFoundException.t
  7. | `TooManyRequestsException of TooManyRequestsException.t
  8. | `Unknown_operation_error of string * string option
]
Sourceval make : ?versionToken:??? -> ?configuration:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `AccessDeniedException of AccessDeniedException.t | `BadRequestException of BadRequestException.t | `ConflictException of ConflictException.t | `ForbiddenException of ForbiddenException.t | `InternalServerErrorException of InternalServerErrorException.t | `NotFoundException of NotFoundException.t | `TooManyRequestsException of TooManyRequestsException.t | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `AccessDeniedException of AccessDeniedException.t | `BadRequestException of BadRequestException.t | `ConflictException of ConflictException.t | `ForbiddenException of ForbiddenException.t | `InternalServerErrorException of InternalServerErrorException.t | `NotFoundException of NotFoundException.t | `TooManyRequestsException of TooManyRequestsException.t | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `String of VersionToken.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