Values.UpdateTableMetadataLocationRequestSourceUpdates the metadata location for a table. The metadata location of a table must be an S3 URI that begins with the table's warehouse location. The metadata location for an Apache Iceberg table must end with .metadata.json, or if the metadata file is Gzip-compressed, .metadata.json.gz. Permissions You must have the s3tables:UpdateTableMetadataLocation 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 of the table.
*)name : TableName.t;The name of the table.
*)versionToken : VersionToken.t;The version token of the table.
*)metadataLocation : MetadataLocation.t;The new metadata location for the table.
*)}val make :
tableBucketARN:TableBucketARN.t ->
namespace:NamespaceName.t ->
name:TableName.t ->
versionToken:VersionToken.t ->
metadataLocation:MetadataLocation.t ->
unit ->
t