Values.RenameTableRequestSourceRenames a table or a namespace. For more information, see S3 Tables in the Amazon Simple Storage Service User Guide. Permissions You must have the s3tables:RenameTable permission to use this operation.
type nonrec t = {tableBucketARN : TableBucketARN.t;The Amazon Resource Name (ARN) of the table bucket.
*)namespace : NamespaceName.t;The namespace associated with the table.
*)name : TableName.t;The current name of the table.
*)newNamespaceName : NamespaceName.t option;The new name for the namespace.
*)newName : TableName.t option;The new name for the table.
*)versionToken : VersionToken.t option;The version token of the table.
*)}val make :
?newNamespaceName:??? ->
?newName:??? ->
?versionToken:??? ->
tableBucketARN:TableBucketARN.t ->
namespace:NamespaceName.t ->
name:TableName.t ->
unit ->
t