Get Table Bucket Encryption
s3tables_get_table_bucket_encryption | R Documentation |
Gets the encryption configuration for a table bucket¶
Description¶
Gets the encryption configuration for a table bucket.
Permissions¶
You must have the s3tables:GetTableBucketEncryption
permission to use
this operation.
Usage¶
s3tables_get_table_bucket_encryption(tableBucketARN)
Arguments¶
tableBucketARN |
[required] The Amazon Resource Name (ARN) of the table bucket. |
Value¶
A list with the following syntax:
list(
encryptionConfiguration = list(
sseAlgorithm = "AES256"|"aws:kms",
kmsKeyArn = "string"
)
)
Request syntax¶
svc$get_table_bucket_encryption(
tableBucketARN = "string"
)