Class: Aws::S3::Types::PutBucketEncryptionRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3::Types::PutBucketEncryptionRequest
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-s3/types.rb
Overview
Note:
When making an API call, you may pass PutBucketEncryptionRequest data as a hash:
{
bucket: "BucketName", # required
content_md5: "ContentMD5",
server_side_encryption_configuration: { # required
rules: [ # required
{
apply_server_side_encryption_by_default: {
sse_algorithm: "AES256", # required, accepts AES256, aws:kms
kms_master_key_id: "SSEKMSKeyId",
},
},
],
},
}
Instance Attribute Summary collapse
-
#bucket ⇒ String
The name of the bucket for which the server-side encryption configuration is set.
-
#content_md5 ⇒ String
The base64-encoded 128-bit MD5 digest of the server-side encryption configuration.
-
#server_side_encryption_configuration ⇒ Types::ServerSideEncryptionConfiguration
Container for server-side encryption configuration rules.
Instance Attribute Details
#bucket ⇒ String
The name of the bucket for which the server-side encryption configuration is set.
6681 6682 6683 6684 6685 6686 |
# File 'lib/aws-sdk-s3/types.rb', line 6681 class PutBucketEncryptionRequest < Struct.new( :bucket, :content_md5, :server_side_encryption_configuration) include Aws::Structure end |
#content_md5 ⇒ String
The base64-encoded 128-bit MD5 digest of the server-side encryption configuration.
6681 6682 6683 6684 6685 6686 |
# File 'lib/aws-sdk-s3/types.rb', line 6681 class PutBucketEncryptionRequest < Struct.new( :bucket, :content_md5, :server_side_encryption_configuration) include Aws::Structure end |
#server_side_encryption_configuration ⇒ Types::ServerSideEncryptionConfiguration
Container for server-side encryption configuration rules. Currently S3 supports one rule only.
6681 6682 6683 6684 6685 6686 |
# File 'lib/aws-sdk-s3/types.rb', line 6681 class PutBucketEncryptionRequest < Struct.new( :bucket, :content_md5, :server_side_encryption_configuration) include Aws::Structure end |