Interface CfnMonitoringSchedule.MonitoringInputProperty

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

@Stability(Stable) public static interface CfnMonitoringSchedule.MonitoringInputProperty extends software.amazon.jsii.JsiiSerializable
The inputs for a monitoring 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.*;
 Object json;
 MonitoringInputProperty monitoringInputProperty = MonitoringInputProperty.builder()
         .batchTransformInput(BatchTransformInputProperty.builder()
                 .dataCapturedDestinationS3Uri("dataCapturedDestinationS3Uri")
                 .datasetFormat(DatasetFormatProperty.builder()
                         .csv(CsvProperty.builder()
                                 .header(false)
                                 .build())
                         .json(json)
                         .parquet(false)
                         .build())
                 .localPath("localPath")
                 // the properties below are optional
                 .s3DataDistributionType("s3DataDistributionType")
                 .s3InputMode("s3InputMode")
                 .build())
         .endpointInput(EndpointInputProperty.builder()
                 .endpointName("endpointName")
                 .localPath("localPath")
                 // the properties below are optional
                 .s3DataDistributionType("s3DataDistributionType")
                 .s3InputMode("s3InputMode")
                 .build())
         .build();