interface DataProcessingProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Sagemaker.CfnTransformJob.DataProcessingProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnTransformJob_DataProcessingProperty |
Java | software.amazon.awscdk.services.sagemaker.CfnTransformJob.DataProcessingProperty |
Python | aws_cdk.aws_sagemaker.CfnTransformJob.DataProcessingProperty |
TypeScript | aws-cdk-lib » aws_sagemaker » CfnTransformJob » DataProcessingProperty |
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 { aws_sagemaker as sagemaker } from 'aws-cdk-lib';
const dataProcessingProperty: sagemaker.CfnTransformJob.DataProcessingProperty = {
inputFilter: 'inputFilter',
joinSource: 'joinSource',
outputFilter: 'outputFilter',
};
Properties
| Name | Type | Description |
|---|---|---|
| input | string | A JSONPath expression used to select a portion of the input data to pass to the algorithm. |
| join | string | Specifies the source of the data to join with the transformed data. |
| output | string | A JSONPath expression used to select a portion of the joined dataset to save in the output file. |
inputFilter?
Type:
string
(optional)
A JSONPath expression used to select a portion of the input data to pass to the algorithm.
joinSource?
Type:
string
(optional)
Specifies the source of the data to join with the transformed data.
outputFilter?
Type:
string
(optional)
A JSONPath expression used to select a portion of the joined dataset to save in the output file.

.NET
Go
Java
Python
TypeScript