Interface CfnTransformJob.TransformInputProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTransformJob.TransformInputProperty.Jsii$Proxy
- Enclosing class:
CfnTransformJob
@Stability(Stable)
public static interface CfnTransformJob.TransformInputProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.sagemaker.*;
TransformInputProperty transformInputProperty = TransformInputProperty.builder()
.dataSource(DataSourceProperty.builder()
.s3DataSource(S3DataSourceProperty.builder()
.s3DataType("s3DataType")
.s3Uri("s3Uri")
.build())
.build())
// the properties below are optional
.compressionType("compressionType")
.contentType("contentType")
.splitType("splitType")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTransformJob.TransformInputPropertystatic final classAn implementation forCfnTransformJob.TransformInputProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringIf your transform data is compressed, specify the compression type.default StringThe multipurpose internet mail extension (MIME) type of the data.Describes the location of the channel data.default StringThe method to use to split the transform job's data files into smaller batches.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDataSource
Describes the location of the channel data.Returns union: either
IResolvableorCfnTransformJob.DataSourceProperty- See Also:
-
getCompressionType
If your transform data is compressed, specify the compression type.- See Also:
-
getContentType
The multipurpose internet mail extension (MIME) type of the data.- See Also:
-
getSplitType
The method to use to split the transform job's data files into smaller batches.- See Also:
-
builder
-