Interface CfnTransformJobPropsMixin.DataProcessingProperty

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

@Stability(Stable) public static interface CfnTransformJobPropsMixin.DataProcessingProperty extends software.amazon.jsii.JsiiSerializable
The data structure used to specify the data to be used for inference in a batch transform job.

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.*;
 DataProcessingProperty dataProcessingProperty = DataProcessingProperty.builder()
         .inputFilter("inputFilter")
         .joinSource("joinSource")
         .outputFilter("outputFilter")
         .build();
 

See Also: