Values.PutTableBucketStorageClassRequestSourceSets or updates the storage class configuration for a table bucket. This configuration serves as the default storage class for all new tables created in the bucket, allowing you to optimize storage costs at the bucket level. Permissions You must have the s3tables:PutTableBucketStorageClass permission to use this operation.
type nonrec t = {tableBucketARN : TableBucketARN.t;The Amazon Resource Name (ARN) of the table bucket.
*)storageClassConfiguration : StorageClassConfiguration.t;The storage class configuration to apply to the table bucket. This configuration will serve as the default for new tables created in this bucket.
*)}val make :
tableBucketARN:TableBucketARN.t ->
storageClassConfiguration:StorageClassConfiguration.t ->
unit ->
tval to_value :
t ->
[> `Structure of
(string
* [> `String of TableBucketARN.t
| `Structure of (string * [> `Enum of string ]) list ])
list ]