Class: Aws::XRay::Types::EncryptionConfig
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::XRay::Types::EncryptionConfig
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-xray/types.rb
 
Overview
A configuration document that specifies encryption configuration settings.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #key_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The ID of the KMS key used for encryption, if applicable.
 - 
  
    
      #status  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The encryption status.
 - 
  
    
      #type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The type of encryption.
 
Instance Attribute Details
#key_id ⇒ String
The ID of the KMS key used for encryption, if applicable.
      488 489 490 491 492 493 494  | 
    
      # File 'lib/aws-sdk-xray/types.rb', line 488 class EncryptionConfig < Struct.new( :key_id, :status, :type) SENSITIVE = [] include Aws::Structure end  | 
  
#status ⇒ String
The encryption status. While the status is ‘UPDATING`, X-Ray may encrypt data with a combination of the new and old settings.
      488 489 490 491 492 493 494  | 
    
      # File 'lib/aws-sdk-xray/types.rb', line 488 class EncryptionConfig < Struct.new( :key_id, :status, :type) SENSITIVE = [] include Aws::Structure end  | 
  
#type ⇒ String
The type of encryption. Set to ‘KMS` for encryption with KMS keys. Set to `NONE` for default encryption.
      488 489 490 491 492 493 494  | 
    
      # File 'lib/aws-sdk-xray/types.rb', line 488 class EncryptionConfig < Struct.new( :key_id, :status, :type) SENSITIVE = [] include Aws::Structure end  |