interface DataProcessingProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SageMaker.CfnTransformJobPropsMixin.DataProcessingProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssagemaker#CfnTransformJobPropsMixin_DataProcessingProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.sagemaker.CfnTransformJobPropsMixin.DataProcessingProperty |
Python | aws_cdk.cfn_property_mixins.aws_sagemaker.CfnTransformJobPropsMixin.DataProcessingProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_sagemaker » CfnTransformJobPropsMixin » 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/cfn-property-mixins';
const dataProcessingProperty: sagemaker.CfnTransformJobPropsMixin.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