aws-cdk-lib.aws_glue.CfnMLTransform.TransformEncryptionProperty

interface TransformEncryptionProperty

LanguageType name
.NETAmazon.CDK.AWS.Glue.CfnMLTransform.TransformEncryptionProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsglue#CfnMLTransform_TransformEncryptionProperty
Javasoftware.amazon.awscdk.services.glue.CfnMLTransform.TransformEncryptionProperty
Pythonaws_cdk.aws_glue.CfnMLTransform.TransformEncryptionProperty
TypeScript aws-cdk-lib » aws_glue » CfnMLTransform » TransformEncryptionProperty

The encryption-at-rest settings of the transform that apply to accessing user data.

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.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_glue as glue } from 'aws-cdk-lib';
const transformEncryptionProperty: glue.CfnMLTransform.TransformEncryptionProperty = {
  mlUserDataEncryption: {
    mlUserDataEncryptionMode: 'mlUserDataEncryptionMode',

    // the properties below are optional
    kmsKeyId: 'kmsKeyId',
  },
  taskRunSecurityConfigurationName: 'taskRunSecurityConfigurationName',
};

Properties

NameTypeDescription
mlUserDataEncryption?IResolvable | MLUserDataEncryptionPropertyThe encryption-at-rest settings of the transform that apply to accessing user data.
taskRunSecurityConfigurationName?stringThe name of the security configuration.

mlUserDataEncryption?

Type: IResolvable | MLUserDataEncryptionProperty (optional)

The encryption-at-rest settings of the transform that apply to accessing user data.


taskRunSecurityConfigurationName?

Type: string (optional)

The name of the security configuration.