Interface CfnMLTransform.ITransformEncryptionProperty
The encryption-at-rest settings of the transform that apply to accessing user data.
Namespace: Amazon.CDK.AWS.Glue
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ITransformEncryptionProperty
Syntax (vb)
Public Interface ITransformEncryptionProperty
Remarks
Machine learning transforms can access user data encrypted in Amazon S3 using KMS.
Additionally, imported labels and trained transforms can now be encrypted using a customer provided KMS key.
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Glue;
var transformEncryptionProperty = new TransformEncryptionProperty {
MlUserDataEncryption = new MLUserDataEncryptionProperty {
MlUserDataEncryptionMode = "mlUserDataEncryptionMode",
// the properties below are optional
KmsKeyId = "kmsKeyId"
},
TaskRunSecurityConfigurationName = "taskRunSecurityConfigurationName"
};
Synopsis
Properties
MlUserDataEncryption | The encryption-at-rest settings of the transform that apply to accessing user data. |
TaskRunSecurityConfigurationName | The name of the security configuration. |
Properties
MlUserDataEncryption
The encryption-at-rest settings of the transform that apply to accessing user data.
virtual object MlUserDataEncryption { get; }
Property Value
System.Object
Remarks
TaskRunSecurityConfigurationName
The name of the security configuration.
virtual string TaskRunSecurityConfigurationName { get; }
Property Value
System.String