interface TransformInputProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Sagemaker.CfnTransformJob.TransformInputProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awssagemaker#CfnTransformJob_TransformInputProperty |
Java | software.amazon.awscdk.services.sagemaker.CfnTransformJob.TransformInputProperty |
Python | aws_cdk.aws_sagemaker.CfnTransformJob.TransformInputProperty |
TypeScript | aws-cdk-lib » aws_sagemaker » CfnTransformJob » TransformInputProperty |
Describes the input source and the way the transform job consumes it.
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 transformInputProperty: sagemaker.CfnTransformJob.TransformInputProperty = {
dataSource: {
s3DataSource: {
s3DataType: 's3DataType',
s3Uri: 's3Uri',
},
},
// the properties below are optional
compressionType: 'compressionType',
contentType: 'contentType',
splitType: 'splitType',
};
Properties
| Name | Type | Description |
|---|---|---|
| data | IResolvable | Data | Describes the location of the channel data. |
| compression | string | If your transform data is compressed, specify the compression type. |
| content | string | The multipurpose internet mail extension (MIME) type of the data. |
| split | string | The method to use to split the transform job's data files into smaller batches. |
dataSource
Type:
IResolvable | Data
Describes the location of the channel data.
compressionType?
Type:
string
(optional)
If your transform data is compressed, specify the compression type.
contentType?
Type:
string
(optional)
The multipurpose internet mail extension (MIME) type of the data.
splitType?
Type:
string
(optional)
The method to use to split the transform job's data files into smaller batches.

.NET
Go
Java
Python
TypeScript