Put Table Bucket Encryption
s3tables_put_table_bucket_encryption | R Documentation |
Sets the encryption configuration for a table bucket¶
Description¶
Sets the encryption configuration for a table bucket.
Permissions¶
You must have the s3tables:PutTableBucketEncryption
permission to use
this operation.
If you choose SSE-KMS encryption you must grant the S3 Tables maintenance principal access to your KMS key. For more information, see Permissions requirements for S3 Tables SSE-KMS encryption
Usage¶
s3tables_put_table_bucket_encryption(tableBucketARN,
encryptionConfiguration)
Arguments¶
tableBucketARN |
[required] The Amazon Resource Name (ARN) of the table bucket. |
encryptionConfiguration |
[required] The encryption configuration to apply to the table bucket. |
Value¶
An empty list.
Request syntax¶
svc$put_table_bucket_encryption(
tableBucketARN = "string",
encryptionConfiguration = list(
sseAlgorithm = "AES256"|"aws:kms",
kmsKeyArn = "string"
)
)