Creates a new server-side encryption configuration (or replaces an existing one, if present).
s3_put_bucket_encryption(Bucket, ContentMD5,
ServerSideEncryptionConfiguration)[required] The name of the bucket for which the server-side encryption configuration is set.
The base64-encoded 128-bit MD5 digest of the server-side encryption configuration. This parameter is auto-populated when using the command from the CLI
[required]
svc$put_bucket_encryption(
Bucket = "string",
ContentMD5 = "string",
ServerSideEncryptionConfiguration = list(
Rules = list(
list(
ApplyServerSideEncryptionByDefault = list(
SSEAlgorithm = "AES256"|"aws:kms",
KMSMasterKeyID = "string"
)
)
)
)
)