Skip to content

Put Table Bucket Storage Class

s3tables_put_table_bucket_storage_class R Documentation

Sets or updates the storage class configuration for a table bucket

Description

Sets 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.

Usage

s3tables_put_table_bucket_storage_class(tableBucketARN,
  storageClassConfiguration)

Arguments

tableBucketARN

[required] The Amazon Resource Name (ARN) of the table bucket.

storageClassConfiguration

[required] The storage class configuration to apply to the table bucket. This configuration will serve as the default for new tables created in this bucket.

Value

An empty list.

Request syntax

svc$put_table_bucket_storage_class(
  tableBucketARN = "string",
  storageClassConfiguration = list(
    storageClass = "STANDARD"|"INTELLIGENT_TIERING"
  )
)