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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTransformJobPropsMixin.DataProcessingPropertystatic final classAn implementation forCfnTransformJobPropsMixin.DataProcessingProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringA JSONPath expression used to select a portion of the input data to pass to the algorithm.default StringSpecifies the source of the data to join with the transformed data.default StringA JSONPath expression used to select a portion of the joined dataset to save in the output file.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getInputFilter
A JSONPath expression used to select a portion of the input data to pass to the algorithm.- See Also:
-
getJoinSource
Specifies the source of the data to join with the transformed data.- See Also:
-
getOutputFilter
A JSONPath expression used to select a portion of the joined dataset to save in the output file.- See Also:
-
builder
-