Interface CfnMLTransformPropsMixin.MLUserDataEncryptionProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnMLTransformPropsMixin.MLUserDataEncryptionProperty.Jsii$Proxy
- Enclosing class:
CfnMLTransformPropsMixin
@Stability(Stable)
public static interface CfnMLTransformPropsMixin.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.cfnpropertymixins.services.glue.*;
MLUserDataEncryptionProperty mLUserDataEncryptionProperty = MLUserDataEncryptionProperty.builder()
.kmsKeyId("kmsKeyId")
.mlUserDataEncryptionMode("mlUserDataEncryptionMode")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnMLTransformPropsMixin.MLUserDataEncryptionPropertystatic final classAn implementation forCfnMLTransformPropsMixin.MLUserDataEncryptionProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getKmsKeyId
The ID for the customer-provided KMS key.- See Also:
-
getMlUserDataEncryptionMode
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.
- See Also:
-
builder
-