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

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
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.

[1]: docs.aws.amazon.com/AmazonS3/latest/dev/serv-side-encryption.html

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)


1661
1662
1663
1664
1665
1666
# File 'lib/aws-sdk-guardduty/types.rb', line 1661

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)


1661
1662
1663
1664
1665
1666
# File 'lib/aws-sdk-guardduty/types.rb', line 1661

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