Class: Aws::SecurityHub::Types::AwsS3BucketServerSideEncryptionByDefault
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityHub::Types::AwsS3BucketServerSideEncryptionByDefault
- 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
-
#kms_master_key_id ⇒ String
KMS key ID to use for the default encryption.
-
#sse_algorithm ⇒ String
Server-side encryption algorithm to use for the default encryption.
Instance Attribute Details
#kms_master_key_id ⇒ String
KMS key ID to use for the default encryption.
19087 19088 19089 19090 19091 19092 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 19087 class AwsS3BucketServerSideEncryptionByDefault < Struct.new( :sse_algorithm, :kms_master_key_id) SENSITIVE = [] include Aws::Structure end |
#sse_algorithm ⇒ String
Server-side encryption algorithm to use for the default encryption.
Valid values are aws: kms
or AES256
.
19087 19088 19089 19090 19091 19092 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 19087 class AwsS3BucketServerSideEncryptionByDefault < Struct.new( :sse_algorithm, :kms_master_key_id) SENSITIVE = [] include Aws::Structure end |