Skip to content

Get Table Encryption

s3tables_get_table_encryption R Documentation

Gets the encryption configuration for a table

Description

Gets the encryption configuration for a table.

Permissions

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

Usage

s3tables_get_table_encryption(tableBucketARN, namespace, name)

Arguments

tableBucketARN

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

namespace

[required] The namespace associated with the table.

name

[required] The name of the table.

Value

A list with the following syntax:

list(
  encryptionConfiguration = list(
    sseAlgorithm = "AES256"|"aws:kms",
    kmsKeyArn = "string"
  )
)

Request syntax

svc$get_table_encryption(
  tableBucketARN = "string",
  namespace = "string",
  name = "string"
)