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();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnMonitoringSchedule.MonitoringExecutionSummaryProperty
static final class
An implementation forCfnMonitoringSchedule.MonitoringExecutionSummaryProperty
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The time at which the monitoring job was created.default String
The name of the endpoint used to run the monitoring job.default String
Contains the reason a monitoring job failed, if it failed.A timestamp that indicates the last time the monitoring job was modified.The status of the monitoring job.The name of the monitoring schedule.default String
The Amazon Resource Name (ARN) of the monitoring job.The time the monitoring job was scheduled.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCreationTime
The time at which the monitoring job was created. -
getLastModifiedTime
A timestamp that indicates the last time the monitoring job was modified. -
getMonitoringExecutionStatus
The status of the monitoring job. -
getMonitoringScheduleName
The name of the monitoring schedule. -
getScheduledTime
The time the monitoring job was scheduled. -
getEndpointName
The name of the endpoint used to run the monitoring job. -
getFailureReason
Contains the reason a monitoring job failed, if it failed. -
getProcessingJobArn
The Amazon Resource Name (ARN) of the monitoring job. -
builder
@Stability(Stable) static CfnMonitoringSchedule.MonitoringExecutionSummaryProperty.Builder builder()
-