Amazon S3 API · Schema

PutBucketEncryptionRequest

Cloud StorageObject StorageStorage

Properties

Name Type Description
ServerSideEncryptionConfiguration object Specifies the default server-side-encryption configuration.
View JSON Schema on GitHub

JSON Schema

s3-putbucketencryptionrequest-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "PutBucketEncryptionRequest",
  "type": "object",
  "properties": {
    "ServerSideEncryptionConfiguration": {
      "type": "object",
      "properties": {
        "Rules": {}
      },
      "required": [
        "Rules"
      ],
      "description": "Specifies the default server-side-encryption configuration."
    }
  },
  "required": [
    "ServerSideEncryptionConfiguration"
  ]
}