Class: Aws::Macie2::Types::ServerSideEncryption

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-macie2/lib/aws-sdk-macie2/types.rb

Overview

Provides information about the default server-side encryption settings for an S3 bucket or the encryption settings for an S3 object.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#encryption_typeString

The server-side encryption algorithm that was used to encrypt an S3 object or is used by default to encrypt objects that are added to an S3 bucket. Possible values are:

Returns:

  • (String)


5842
5843
5844
5845
5846
5847
# File 'gems/aws-sdk-macie2/lib/aws-sdk-macie2/types.rb', line 5842

class ServerSideEncryption < Struct.new(
  :encryption_type,
  :kms_master_key_id)
  SENSITIVE = []
  include Aws::Structure
end

#kms_master_key_idString

Returns:

  • (String)


5842
5843
5844
5845
5846
5847
# File 'gems/aws-sdk-macie2/lib/aws-sdk-macie2/types.rb', line 5842

class ServerSideEncryption < Struct.new(
  :encryption_type,
  :kms_master_key_id)
  SENSITIVE = []
  include Aws::Structure
end