Interface CfnMonitoringSchedule.MonitoringExecutionSummaryProperty

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

@Stability(Stable) public static interface CfnMonitoringSchedule.MonitoringExecutionSummaryProperty extends software.amazon.jsii.JsiiSerializable
Summary of information about the last monitoring job to run.

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.*;
 MonitoringExecutionSummaryProperty monitoringExecutionSummaryProperty = MonitoringExecutionSummaryProperty.builder()
         .creationTime("creationTime")
         .lastModifiedTime("lastModifiedTime")
         .monitoringExecutionStatus("monitoringExecutionStatus")
         .monitoringScheduleName("monitoringScheduleName")
         .scheduledTime("scheduledTime")
         // the properties below are optional
         .endpointName("endpointName")
         .failureReason("failureReason")
         .processingJobArn("processingJobArn")
         .build();
 

See Also: