Class: Aws::Glue::Types::MLUserDataEncryption
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glue::Types::MLUserDataEncryption
- Defined in:
- gems/aws-sdk-glue/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.
16885 16886 16887 16888 16889 16890 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 16885 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.
16885 16886 16887 16888 16889 16890 |
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 16885 class MLUserDataEncryption < Struct.new( :ml_user_data_encryption_mode, :kms_key_id) SENSITIVE = [] include Aws::Structure end |