Interface CfnMonitoringSchedule.BatchTransformInputProperty

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

@Stability(Stable) public static interface CfnMonitoringSchedule.BatchTransformInputProperty extends software.amazon.jsii.JsiiSerializable
Input object for the batch transform job.

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.*;
 BatchTransformInputProperty batchTransformInputProperty = BatchTransformInputProperty.builder()
         .dataCapturedDestinationS3Uri("dataCapturedDestinationS3Uri")
         .datasetFormat(DatasetFormatProperty.builder()
                 .csv(CsvProperty.builder()
                         .header(false)
                         .build())
                 .json(JsonProperty.builder()
                         .line(false)
                         .build())
                 .parquet(false)
                 .build())
         .localPath("localPath")
         // the properties below are optional
         .excludeFeaturesAttribute("excludeFeaturesAttribute")
         .s3DataDistributionType("s3DataDistributionType")
         .s3InputMode("s3InputMode")
         .build();
 

See Also: