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.
17043 17044 17045 17046 17047 17048 |
# File 'lib/aws-sdk-glue/types.rb', line 17043 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.
17043 17044 17045 17046 17047 17048 |
# File 'lib/aws-sdk-glue/types.rb', line 17043 class MLUserDataEncryption < Struct.new( :ml_user_data_encryption_mode, :kms_key_id) SENSITIVE = [] include Aws::Structure end |