interface MLUserDataEncryptionProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Glue.CfnMLTransformPropsMixin.MLUserDataEncryptionProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsglue#CfnMLTransformPropsMixin_MLUserDataEncryptionProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.glue.CfnMLTransformPropsMixin.MLUserDataEncryptionProperty |
Python | aws_cdk.cfn_property_mixins.aws_glue.CfnMLTransformPropsMixin.MLUserDataEncryptionProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_glue » CfnMLTransformPropsMixin » 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/cfn-property-mixins';
const mLUserDataEncryptionProperty: glue.CfnMLTransformPropsMixin.MLUserDataEncryptionProperty = {
kmsKeyId: 'kmsKeyId',
mlUserDataEncryptionMode: 'mlUserDataEncryptionMode',
};
Properties
| Name | Type | Description |
|---|---|---|
| kms | string | The ID for the customer-provided KMS key. |
| ml | string | The encryption mode applied to user data. Valid values are:. |
kmsKeyId?
Type:
string
(optional)
The ID for the customer-provided KMS key.
mlUserDataEncryptionMode?
Type:
string
(optional)
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.

.NET
Go
Java
Python
TypeScript