Class: Aws::GuardDuty::Types::DefaultServerSideEncryption
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::GuardDuty::Types::DefaultServerSideEncryption
 
 
- 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
- 
  
    
      #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.
      2081 2082 2083 2084 2085 2086  | 
    
      # File 'lib/aws-sdk-guardduty/types.rb', line 2081 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`.
      2081 2082 2083 2084 2085 2086  | 
    
      # File 'lib/aws-sdk-guardduty/types.rb', line 2081 class DefaultServerSideEncryption < Struct.new( :encryption_type, :kms_master_key_arn) SENSITIVE = [] include Aws::Structure end  |