Class: Aws::Connect::Types::EncryptionConfig
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Connect::Types::EncryptionConfig
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-connect/types.rb
 
Overview
The encryption configuration.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #encryption_type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The type of encryption.
 - 
  
    
      #key_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The full ARN of the encryption key.
 
Instance Attribute Details
#encryption_type ⇒ String
The type of encryption.
      8413 8414 8415 8416 8417 8418  | 
    
      # File 'lib/aws-sdk-connect/types.rb', line 8413 class EncryptionConfig < Struct.new( :encryption_type, :key_id) SENSITIVE = [] include Aws::Structure end  | 
  
#key_id ⇒ String
The full ARN of the encryption key.
<note markdown=“1”> Be sure to provide the full ARN of the encryption key, not just the ID.
Amazon Connect supports only KMS keys with the default key spec of [
‘SYMMETRIC_DEFAULT` ][1].
</note>
[1]: docs.aws.amazon.com/kms/latest/developerguide/asymmetric-key-specs.html#key-spec-symmetric-default
      8413 8414 8415 8416 8417 8418  | 
    
      # File 'lib/aws-sdk-connect/types.rb', line 8413 class EncryptionConfig < Struct.new( :encryption_type, :key_id) SENSITIVE = [] include Aws::Structure end  |