Class: Aws::VoiceID::Types::ServerSideEncryptionConfiguration
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::VoiceID::Types::ServerSideEncryptionConfiguration
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-voiceid/types.rb
 
Overview
The configuration containing information about the customer managed key used for encrypting customer data.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #kms_key_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The identifier of the KMS key to use to encrypt data stored by Voice ID.
 
Instance Attribute Details
#kms_key_id ⇒ String
The identifier of the KMS key to use to encrypt data stored by Voice ID. Voice ID doesn’t support asymmetric customer managed keys.
      1652 1653 1654 1655 1656  | 
    
      # File 'lib/aws-sdk-voiceid/types.rb', line 1652 class ServerSideEncryptionConfiguration < Struct.new( :kms_key_id) SENSITIVE = [] include Aws::Structure end  |