ModelPackageTransformInput

data class ModelPackageTransformInput(val compressionType: ModelPackageTransformInputCompressionType? = null, val contentType: String? = null, val dataSource: ModelPackageDataSource, val splitType: ModelPackageTransformInputSplitType? = null)

Describes the input source of a transform job and the way the transform job consumes it.

Constructors

Link copied to clipboard
constructor(compressionType: ModelPackageTransformInputCompressionType? = null, contentType: String? = null, dataSource: ModelPackageDataSource, splitType: ModelPackageTransformInputSplitType? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

If your transform data is compressed, specify the compression type. Amazon SageMaker automatically decompresses the data for the transform job accordingly. The default value is None.

Link copied to clipboard
val contentType: String? = null

The multipurpose internet mail extension (MIME) type of the data. Amazon SageMaker uses the MIME type with each http call to transfer data to the transform job.

Link copied to clipboard

Describes the location of the channel data, which is, the S3 location of the input data that the model can consume.

Link copied to clipboard

The method to use to split the transform job's data files into smaller batches.