Skip to content

Create Namespace

s3tables_create_namespace R Documentation

Creates a namespace

Description

Creates a namespace. A namespace is a logical grouping of tables within your table bucket, which you can use to organize tables. For more information, see Create a namespace in the Amazon Simple Storage Service User Guide.

Permissions

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

Usage

s3tables_create_namespace(tableBucketARN, namespace)

Arguments

tableBucketARN

[required] The Amazon Resource Name (ARN) of the table bucket to create the namespace in.

namespace

[required] A name for the namespace.

Value

A list with the following syntax:

list(
  tableBucketARN = "string",
  namespace = list(
    "string"
  )
)

Request syntax

svc$create_namespace(
  tableBucketARN = "string",
  namespace = list(
    "string"
  )
)