Skip to content

Create Table Bucket

s3tables_create_table_bucket R Documentation

Creates a table bucket

Description

Creates a table bucket. For more information, see Creating a table bucket in the Amazon Simple Storage Service User Guide.

Permissions

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

  • If you use this operation with the optional encryptionConfiguration parameter you must have the s3tables:PutTableBucketEncryption permission.

Usage

s3tables_create_table_bucket(name, encryptionConfiguration)

Arguments

name

[required] The name for the table bucket.

encryptionConfiguration

The encryption configuration to use for the table bucket. This configuration specifies the default encryption settings that will be applied to all tables created in this bucket unless overridden at the table level. The configuration includes the encryption algorithm and, if using SSE-KMS, the KMS key to use.

Value

A list with the following syntax:

list(
  arn = "string"
)

Request syntax

svc$create_table_bucket(
  name = "string",
  encryptionConfiguration = list(
    sseAlgorithm = "AES256"|"aws:kms",
    kmsKeyArn = "string"
  )
)