public static interface TransformInput.Builder extends SdkPojo, CopyableBuilder<TransformInput.Builder,TransformInput>
Modifier and Type | Method and Description |
---|---|
TransformInput.Builder |
compressionType(CompressionType compressionType)
Compressing data helps save on storage space.
|
TransformInput.Builder |
compressionType(String compressionType)
Compressing data helps save on storage space.
|
TransformInput.Builder |
contentType(String contentType)
The multipurpose internet mail extension (MIME) type of the data.
|
default TransformInput.Builder |
dataSource(Consumer<TransformDataSource.Builder> dataSource)
Describes the location of the channel data, meaning the S3 location of the input data that the model can
consume.
|
TransformInput.Builder |
dataSource(TransformDataSource dataSource)
Describes the location of the channel data, meaning the S3 location of the input data that the model can
consume.
|
TransformInput.Builder |
splitType(SplitType splitType)
The method to use to split the transform job's data into smaller batches.
|
TransformInput.Builder |
splitType(String splitType)
The method to use to split the transform job's data into smaller batches.
|
copy
applyMutation, build
TransformInput.Builder dataSource(TransformDataSource dataSource)
Describes the location of the channel data, meaning the S3 location of the input data that the model can consume.
dataSource
- Describes the location of the channel data, meaning the S3 location of the input data that the model
can consume.default TransformInput.Builder dataSource(Consumer<TransformDataSource.Builder> dataSource)
Describes the location of the channel data, meaning the S3 location of the input data that the model can consume.
This is a convenience that creates an instance of theTransformDataSource.Builder
avoiding the need
to create one manually via TransformDataSource.builder()
.
When the Consumer
completes, SdkBuilder.build()
is called immediately and
its result is passed to dataSource(TransformDataSource)
.dataSource
- a consumer that will call methods on TransformDataSource.Builder
dataSource(TransformDataSource)
TransformInput.Builder contentType(String contentType)
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.
contentType
- 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.TransformInput.Builder compressionType(String compressionType)
Compressing data helps save on storage space. 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
.
compressionType
- Compressing data helps save on storage space. 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
.CompressionType
,
CompressionType
TransformInput.Builder compressionType(CompressionType compressionType)
Compressing data helps save on storage space. 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
.
compressionType
- Compressing data helps save on storage space. 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
.CompressionType
,
CompressionType
TransformInput.Builder splitType(String splitType)
The method to use to split the transform job's data into smaller batches. The default value is
None
. If you don't want to split the data, specify None
. If you want to split
records on a newline character boundary, specify Line
. To split records according to the
RecordIO format, specify RecordIO
.
Amazon SageMaker will send maximum number of records per batch in each request up to the MaxPayloadInMB limit. For more information, see RecordIO data format.
For information about the RecordIO
format, see Data Format.
splitType
- The method to use to split the transform job's data into smaller batches. The default value is
None
. If you don't want to split the data, specify None
. If you want to
split records on a newline character boundary, specify Line
. To split records according
to the RecordIO format, specify RecordIO
.
Amazon SageMaker will send maximum number of records per batch in each request up to the MaxPayloadInMB limit. For more information, see RecordIO data format.
For information about the RecordIO
format, see Data Format.
SplitType
,
SplitType
TransformInput.Builder splitType(SplitType splitType)
The method to use to split the transform job's data into smaller batches. The default value is
None
. If you don't want to split the data, specify None
. If you want to split
records on a newline character boundary, specify Line
. To split records according to the
RecordIO format, specify RecordIO
.
Amazon SageMaker will send maximum number of records per batch in each request up to the MaxPayloadInMB limit. For more information, see RecordIO data format.
For information about the RecordIO
format, see Data Format.
splitType
- The method to use to split the transform job's data into smaller batches. The default value is
None
. If you don't want to split the data, specify None
. If you want to
split records on a newline character boundary, specify Line
. To split records according
to the RecordIO format, specify RecordIO
.
Amazon SageMaker will send maximum number of records per batch in each request up to the MaxPayloadInMB limit. For more information, see RecordIO data format.
For information about the RecordIO
format, see Data Format.
SplitType
,
SplitType
Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.