public static interface CfnMonitoringSchedule.MonitoringInputProperty
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();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnMonitoringSchedule.MonitoringInputProperty.Builder
A builder for
CfnMonitoringSchedule.MonitoringInputProperty |
static class |
CfnMonitoringSchedule.MonitoringInputProperty.Jsii$Proxy
An implementation for
CfnMonitoringSchedule.MonitoringInputProperty |
Modifier and Type | Method and Description |
---|---|
static CfnMonitoringSchedule.MonitoringInputProperty.Builder |
builder() |
default java.lang.Object |
getBatchTransformInput()
`CfnMonitoringSchedule.MonitoringInputProperty.BatchTransformInput`.
|
default java.lang.Object |
getEndpointInput()
The endpoint for a monitoring job.
|
default java.lang.Object getBatchTransformInput()
default java.lang.Object getEndpointInput()
static CfnMonitoringSchedule.MonitoringInputProperty.Builder builder()