Class: Aws::Glue::Types::MLUserDataEncryption

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#kms_key_idString

The ID for the customer-provided KMS key.

Returns:

  • (String)


15830
15831
15832
15833
15834
15835
# File 'lib/aws-sdk-glue/types.rb', line 15830

class MLUserDataEncryption < Struct.new(
  :ml_user_data_encryption_mode,
  :kms_key_id)
  SENSITIVE = []
  include Aws::Structure
end

#ml_user_data_encryption_modeString

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.

Returns:

  • (String)


15830
15831
15832
15833
15834
15835
# File 'lib/aws-sdk-glue/types.rb', line 15830

class MLUserDataEncryption < Struct.new(
  :ml_user_data_encryption_mode,
  :kms_key_id)
  SENSITIVE = []
  include Aws::Structure
end