Interface CfnTransformJobPropsMixin.DataCaptureConfigProperty

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

@Stability(Stable) public static interface CfnTransformJobPropsMixin.DataCaptureConfigProperty extends software.amazon.jsii.JsiiSerializable
Configuration to control how SageMaker captures inference 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.sagemaker.*;
 DataCaptureConfigProperty dataCaptureConfigProperty = DataCaptureConfigProperty.builder()
         .destinationS3Uri("destinationS3Uri")
         .generateInferenceId(false)
         .kmsKeyId("kmsKeyId")
         .build();
 

See Also: