List Monitoring Alerts
| sagemaker_list_monitoring_alerts | R Documentation |
Gets the alerts for a single monitoring schedule¶
Description¶
Gets the alerts for a single monitoring schedule.
Usage¶
Arguments¶
MonitoringScheduleName[required] The name of a monitoring schedule.
NextTokenIf the result of the previous
list_monitoring_alertsrequest was truncated, the response includes aNextToken. To retrieve the next set of alerts in the history, use the token in the next request.MaxResultsThe maximum number of results to display. The default is 100.
Value¶
A list with the following syntax:
list(
MonitoringAlertSummaries = list(
list(
MonitoringAlertName = "string",
CreationTime = as.POSIXct(
"2015-01-01"
),
LastModifiedTime = as.POSIXct(
"2015-01-01"
),
AlertStatus = "InAlert"|"OK",
DatapointsToAlert = 123,
EvaluationPeriod = 123,
Actions = list(
ModelDashboardIndicator = list(
Enabled = TRUE|FALSE
)
)
)
),
NextToken = "string"
)