Skip to content

Get Table Bucket Storage Class

s3tables_get_table_bucket_storage_class R Documentation

Retrieves the storage class configuration for a specific table

Description

Retrieves the storage class configuration for a specific table. This allows you to view the storage class settings that apply to an individual table, which may differ from the table bucket's default configuration.

Permissions

You must have the s3tables:GetTableBucketStorageClass permission to use this operation.

Usage

s3tables_get_table_bucket_storage_class(tableBucketARN)

Arguments

tableBucketARN

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

Value

A list with the following syntax:

list(
  storageClassConfiguration = list(
    storageClass = "STANDARD"|"INTELLIGENT_TIERING"
  )
)

Request syntax

svc$get_table_bucket_storage_class(
  tableBucketARN = "string"
)