aws-cdk-lib.aws_glue.CfnMLTransform.MLUserDataEncryptionProperty

interface MLUserDataEncryptionProperty

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

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

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 mLUserDataEncryptionProperty: glue.CfnMLTransform.MLUserDataEncryptionProperty = {
  mlUserDataEncryptionMode: 'mlUserDataEncryptionMode',

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

Properties

NameTypeDescription
mlUserDataEncryptionModestringThe encryption mode applied to user data. Valid values are:.
kmsKeyId?stringThe ID for the customer-provided KMS key.

mlUserDataEncryptionMode

Type: string

The encryption mode applied to user data. Valid values are:.

  • DISABLED: encryption is disabled.
  • SSEKMS: use of server-side encryption with AWS Key Management Service (SSE-KMS) for user data stored in Amazon S3.

kmsKeyId?

Type: string (optional)

The ID for the customer-provided KMS key.