Interface CfnMLTransform.MLUserDataEncryptionProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnMLTransform.MLUserDataEncryptionProperty.Jsii$Proxy
Enclosing class:
CfnMLTransform

@Stability(Stable) public static interface CfnMLTransform.MLUserDataEncryptionProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.glue.*;
 MLUserDataEncryptionProperty mLUserDataEncryptionProperty = MLUserDataEncryptionProperty.builder()
         .mlUserDataEncryptionMode("mlUserDataEncryptionMode")
         // the properties below are optional
         .kmsKeyId("kmsKeyId")
         .build();
 

See Also: