Interface CfnModelPackage.TransformInputProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnModelPackage.TransformInputProperty.Jsii$Proxy
Enclosing class:
CfnModelPackage

@Stability(Stable) public static interface CfnModelPackage.TransformInputProperty extends software.amazon.jsii.JsiiSerializable
Describes the input source of a transform job 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: