Class: Aws::GuardDuty::Types::DefaultServerSideEncryption

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

Overview

Contains information on the server side encryption method used in the S3 bucket. See S3 Server-Side Encryption for more information.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#encryption_typeString

The type of encryption used for objects within the S3 bucket.

Returns:

  • (String)


1867
1868
1869
1870
1871
1872
# File 'gems/aws-sdk-guardduty/lib/aws-sdk-guardduty/types.rb', line 1867

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

#kms_master_key_arnString

The Amazon Resource Name (ARN) of the KMS encryption key. Only available if the bucket EncryptionType is aws:kms.

Returns:

  • (String)


1867
1868
1869
1870
1871
1872
# File 'gems/aws-sdk-guardduty/lib/aws-sdk-guardduty/types.rb', line 1867

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