Class: Aws::Glue::Types::MLUserDataEncryption
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::Glue::Types::MLUserDataEncryption
 
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-glue/types.rb
Overview
The encryption-at-rest settings of the transform that apply to accessing user data.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #kms_key_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The ID for the customer-provided KMS key. 
- 
  
    
      #ml_user_data_encryption_mode  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The encryption mode applied to user data. 
Instance Attribute Details
#kms_key_id ⇒ String
The ID for the customer-provided KMS key.
| 19173 19174 19175 19176 19177 19178 | # File 'lib/aws-sdk-glue/types.rb', line 19173 class MLUserDataEncryption < Struct.new( :ml_user_data_encryption_mode, :kms_key_id) SENSITIVE = [] include Aws::Structure end | 
#ml_user_data_encryption_mode ⇒ String
The encryption mode applied to user data. Valid values are:
- 
DISABLED: encryption is disabled 
- 
SSEKMS: use of server-side encryption with Key Management Service (SSE-KMS) for user data stored in Amazon S3. 
| 19173 19174 19175 19176 19177 19178 | # File 'lib/aws-sdk-glue/types.rb', line 19173 class MLUserDataEncryption < Struct.new( :ml_user_data_encryption_mode, :kms_key_id) SENSITIVE = [] include Aws::Structure end |