Class: Aws::SecurityHub::Types::AwsS3BucketServerSideEncryptionByDefault

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

Overview

Specifies the default server-side encryption to apply to new objects in the bucket.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#kms_master_key_idString

KMS key ID to use for the default encryption.

Returns:

  • (String)


18312
18313
18314
18315
18316
18317
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 18312

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

#sse_algorithmString

Server-side encryption algorithm to use for the default encryption. Valid values are aws: kms or AES256.

Returns:

  • (String)


18312
18313
18314
18315
18316
18317
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 18312

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