interface MonitoringExecutionSummaryProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.Sagemaker.CfnMonitoringSchedule.MonitoringExecutionSummaryProperty |
Java | software.amazon.awscdk.services.sagemaker.CfnMonitoringSchedule.MonitoringExecutionSummaryProperty |
Python | aws_cdk.aws_sagemaker.CfnMonitoringSchedule.MonitoringExecutionSummaryProperty |
TypeScript | @aws-cdk/aws-sagemaker » CfnMonitoringSchedule » MonitoringExecutionSummaryProperty |
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 * as sagemaker from '@aws-cdk/aws-sagemaker';
const monitoringExecutionSummaryProperty: sagemaker.CfnMonitoringSchedule.MonitoringExecutionSummaryProperty = {
creationTime: 'creationTime',
lastModifiedTime: 'lastModifiedTime',
monitoringExecutionStatus: 'monitoringExecutionStatus',
monitoringScheduleName: 'monitoringScheduleName',
scheduledTime: 'scheduledTime',
// the properties below are optional
endpointName: 'endpointName',
failureReason: 'failureReason',
processingJobArn: 'processingJobArn',
};
Properties
Name | Type | Description |
---|---|---|
creation | string | The time at which the monitoring job was created. |
last | string | A timestamp that indicates the last time the monitoring job was modified. |
monitoring | string | The status of the monitoring job. |
monitoring | string | The name of the monitoring schedule. |
scheduled | string | The time the monitoring job was scheduled. |
endpoint | string | The name of the endpoint used to run the monitoring job. |
failure | string | Contains the reason a monitoring job failed, if it failed. |
processing | string | The Amazon Resource Name (ARN) of the monitoring job. |
creationTime
Type:
string
The time at which the monitoring job was created.
lastModifiedTime
Type:
string
A timestamp that indicates the last time the monitoring job was modified.
monitoringExecutionStatus
Type:
string
The status of the monitoring job.
monitoringScheduleName
Type:
string
The name of the monitoring schedule.
scheduledTime
Type:
string
The time the monitoring job was scheduled.
endpointName?
Type:
string
(optional)
The name of the endpoint used to run the monitoring job.
failureReason?
Type:
string
(optional)
Contains the reason a monitoring job failed, if it failed.
processingJobArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the monitoring job.