Class: Aws::GuardDuty::Types::DefaultServerSideEncryption
- Inherits:
-
Struct
- Object
- Struct
- Aws::GuardDuty::Types::DefaultServerSideEncryption
- 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
-
#encryption_type ⇒ String
The type of encryption used for objects within the S3 bucket.
-
#kms_master_key_arn ⇒ String
The Amazon Resource Name (ARN) of the KMS encryption key.
Instance Attribute Details
#encryption_type ⇒ String
The type of encryption used for objects within the S3 bucket.
2026 2027 2028 2029 2030 2031 |
# File 'gems/aws-sdk-guardduty/lib/aws-sdk-guardduty/types.rb', line 2026 class DefaultServerSideEncryption < Struct.new( :encryption_type, :kms_master_key_arn) SENSITIVE = [] include Aws::Structure end |
#kms_master_key_arn ⇒ String
The Amazon Resource Name (ARN) of the KMS encryption key. Only
available if the bucket EncryptionType
is aws:kms
.
2026 2027 2028 2029 2030 2031 |
# File 'gems/aws-sdk-guardduty/lib/aws-sdk-guardduty/types.rb', line 2026 class DefaultServerSideEncryption < Struct.new( :encryption_type, :kms_master_key_arn) SENSITIVE = [] include Aws::Structure end |