Interface CfnTransformJobPropsMixin.TransformInputProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTransformJobPropsMixin.TransformInputProperty.Jsii$Proxy
- Enclosing class:
CfnTransformJobPropsMixin
@Stability(Stable)
public static interface CfnTransformJobPropsMixin.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.cfnpropertymixins.services.sagemaker.*;
TransformInputProperty transformInputProperty = TransformInputProperty.builder()
.compressionType("compressionType")
.contentType("contentType")
.dataSource(DataSourceProperty.builder()
.s3DataSource(S3DataSourceProperty.builder()
.s3DataType("s3DataType")
.s3Uri("s3Uri")
.build())
.build())
.splitType("splitType")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTransformJobPropsMixin.TransformInputPropertystatic final classAn implementation forCfnTransformJobPropsMixin.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.default ObjectDescribes 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
-
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:
-
getDataSource
Describes the location of the channel data.Returns union: either
IResolvableorCfnTransformJobPropsMixin.DataSourceProperty- See Also:
-
getSplitType
The method to use to split the transform job's data files into smaller batches.- See Also:
-
builder
-