Class: Aws::Firehose::Types::EncryptionConfiguration
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Firehose::Types::EncryptionConfiguration
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-firehose/types.rb
 
Overview
Describes the encryption for a destination in Amazon S3.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #kms_encryption_config  ⇒ Types::KMSEncryptionConfig 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The encryption key.
 - 
  
    
      #no_encryption_config  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Specifically override existing encryption information to ensure that no encryption is used.
 
Instance Attribute Details
#kms_encryption_config ⇒ Types::KMSEncryptionConfig
The encryption key.
      2069 2070 2071 2072 2073 2074  | 
    
      # File 'lib/aws-sdk-firehose/types.rb', line 2069 class EncryptionConfiguration < Struct.new( :no_encryption_config, :kms_encryption_config) SENSITIVE = [] include Aws::Structure end  | 
  
#no_encryption_config ⇒ String
Specifically override existing encryption information to ensure that no encryption is used.
      2069 2070 2071 2072 2073 2074  | 
    
      # File 'lib/aws-sdk-firehose/types.rb', line 2069 class EncryptionConfiguration < Struct.new( :no_encryption_config, :kms_encryption_config) SENSITIVE = [] include Aws::Structure end  |