interface MonitoringExecutionSummaryProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SageMaker.Mixins.CfnMonitoringSchedulePropsMixin.MonitoringExecutionSummaryProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssagemaker/mixins#CfnMonitoringSchedulePropsMixin_MonitoringExecutionSummaryProperty |
Java | software.amazon.awscdk.mixins.preview.services.sagemaker.mixins.CfnMonitoringSchedulePropsMixin.MonitoringExecutionSummaryProperty |
Python | aws_cdk.mixins_preview.aws_sagemaker.mixins.CfnMonitoringSchedulePropsMixin.MonitoringExecutionSummaryProperty |
TypeScript | @aws-cdk/mixins-preview » aws_sagemaker » mixins » CfnMonitoringSchedulePropsMixin » 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 { mixins as sagemaker_mixins } from '@aws-cdk/mixins-preview/aws-sagemaker';
const monitoringExecutionSummaryProperty: sagemaker_mixins.CfnMonitoringSchedulePropsMixin.MonitoringExecutionSummaryProperty = {
creationTime: 'creationTime',
endpointName: 'endpointName',
failureReason: 'failureReason',
lastModifiedTime: 'lastModifiedTime',
monitoringExecutionStatus: 'monitoringExecutionStatus',
monitoringScheduleName: 'monitoringScheduleName',
processingJobArn: 'processingJobArn',
scheduledTime: 'scheduledTime',
};
Properties
| Name | Type | Description |
|---|---|---|
| creation | string | The time at which the monitoring job was created. |
| 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. |
| 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. |
| processing | string | The Amazon Resource Name (ARN) of the monitoring job. |
| scheduled | string | The time the monitoring job was scheduled. |
creationTime?
Type:
string
(optional)
The time at which the monitoring job was created.
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.
lastModifiedTime?
Type:
string
(optional)
A timestamp that indicates the last time the monitoring job was modified.
monitoringExecutionStatus?
Type:
string
(optional)
The status of the monitoring job.
monitoringScheduleName?
Type:
string
(optional)
The name of the monitoring schedule.
processingJobArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the monitoring job.
scheduledTime?
Type:
string
(optional)
The time the monitoring job was scheduled.

.NET
Go
Java
Python
TypeScript