@Stability(value=Stable)
public static interface CfnMLTransform.TransformEncryptionProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.glue.*;
TransformEncryptionProperty transformEncryptionProperty = TransformEncryptionProperty.builder()
.mlUserDataEncryption(MLUserDataEncryptionProperty.builder()
.mlUserDataEncryptionMode("mlUserDataEncryptionMode")
// the properties below are optional
.kmsKeyId("kmsKeyId")
.build())
.taskRunSecurityConfigurationName("taskRunSecurityConfigurationName")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnMLTransform.TransformEncryptionProperty.Builder
A builder for
CfnMLTransform.TransformEncryptionProperty |
static class |
CfnMLTransform.TransformEncryptionProperty.Jsii$Proxy
An implementation for
CfnMLTransform.TransformEncryptionProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnMLTransform.TransformEncryptionProperty.Builder |
builder() |
default Object |
getMlUserDataEncryption()
The encryption-at-rest settings of the transform that apply to accessing user data.
|
default String |
getTaskRunSecurityConfigurationName()
The name of the security configuration.
|
@Stability(value=Stable) @Nullable default Object getMlUserDataEncryption()
@Stability(value=Stable) @Nullable default String getTaskRunSecurityConfigurationName()
@Stability(value=Stable) static CfnMLTransform.TransformEncryptionProperty.Builder builder()
Copyright © 2022. All rights reserved.