Class: Aws::S3::Types::ServerSideEncryptionByDefault

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-s3/types.rb

Overview

Note:

When making an API call, you may pass ServerSideEncryptionByDefault data as a hash:

{
  sse_algorithm: "AES256", # required, accepts AES256, aws:kms
  kms_master_key_id: "SSEKMSKeyId",
}

Describes the default server-side encryption to apply to new objects in the bucket. If Put Object request does not specify any server-side encryption, this default encryption will be applied.

Instance Attribute Summary collapse

Instance Attribute Details

#kms_master_key_idString

KMS master key ID to use for the default encryption. This parameter is allowed if SSEAlgorithm is aws:kms.

Returns:

  • (String)


9318
9319
9320
9321
9322
# File 'lib/aws-sdk-s3/types.rb', line 9318

class ServerSideEncryptionByDefault < Struct.new(
  :sse_algorithm,
  :kms_master_key_id)
  include Aws::Structure
end

#sse_algorithmString

Server-side encryption algorithm to use for the default encryption.

Returns:

  • (String)


9318
9319
9320
9321
9322
# File 'lib/aws-sdk-s3/types.rb', line 9318

class ServerSideEncryptionByDefault < Struct.new(
  :sse_algorithm,
  :kms_master_key_id)
  include Aws::Structure
end