interface TransformEncryptionProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.Glue.CfnMLTransform.TransformEncryptionProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsglue#CfnMLTransform_TransformEncryptionProperty |
![]() | software.amazon.awscdk.services.glue.CfnMLTransform.TransformEncryptionProperty |
![]() | aws_cdk.aws_glue.CfnMLTransform.TransformEncryptionProperty |
![]() | 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
Name | Type | Description |
---|---|---|
ml | IResolvable | MLUser | The encryption-at-rest settings of the transform that apply to accessing user data. |
task | string | The name of the security configuration. |
mlUserDataEncryption?
Type:
IResolvable
|
MLUser
(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.