You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.
Class: Aws::SageMaker::Types::ListMonitoringSchedulesRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::ListMonitoringSchedulesRequest
- Defined in:
- (unknown)
Overview
When passing ListMonitoringSchedulesRequest as input to an Aws::Client method, you can use a vanilla Hash:
{
endpoint_name: "EndpointName",
sort_by: "Name", # accepts Name, CreationTime, Status
sort_order: "Ascending", # accepts Ascending, Descending
next_token: "NextToken",
max_results: 1,
name_contains: "NameContains",
creation_time_before: Time.now,
creation_time_after: Time.now,
last_modified_time_before: Time.now,
last_modified_time_after: Time.now,
status_equals: "Pending", # accepts Pending, Failed, Scheduled, Stopped
}
Instance Attribute Summary collapse
-
#creation_time_after ⇒ Time
A filter that returns only monitoring schedules created after a specified time.
-
#creation_time_before ⇒ Time
A filter that returns only monitoring schedules created before a specified time.
-
#endpoint_name ⇒ String
Name of a specific endpoint to fetch schedules for.
-
#last_modified_time_after ⇒ Time
A filter that returns only monitoring schedules modified after a specified time.
-
#last_modified_time_before ⇒ Time
A filter that returns only monitoring schedules modified before a specified time.
-
#max_results ⇒ Integer
The maximum number of jobs to return in the response.
-
#name_contains ⇒ String
Filter for monitoring schedules whose name contains a specified string.
-
#next_token ⇒ String
The token returned if the response is truncated.
-
#sort_by ⇒ String
Whether to sort results by
Status
,CreationTime
,ScheduledTime
field. -
#sort_order ⇒ String
Whether to sort the results in
Ascending
orDescending
order. -
#status_equals ⇒ String
A filter that returns only monitoring schedules modified before a specified time.
Instance Attribute Details
#creation_time_after ⇒ Time
A filter that returns only monitoring schedules created after a specified time.
#creation_time_before ⇒ Time
A filter that returns only monitoring schedules created before a specified time.
#endpoint_name ⇒ String
Name of a specific endpoint to fetch schedules for.
#last_modified_time_after ⇒ Time
A filter that returns only monitoring schedules modified after a specified time.
#last_modified_time_before ⇒ Time
A filter that returns only monitoring schedules modified before a specified time.
#max_results ⇒ Integer
The maximum number of jobs to return in the response. The default value is 10.
#name_contains ⇒ String
Filter for monitoring schedules whose name contains a specified string.
#next_token ⇒ String
The token returned if the response is truncated. To retrieve the next set of job executions, use it in the next request.
#sort_by ⇒ String
Whether to sort results by Status
, CreationTime
, ScheduledTime
field. The default is CreationTime
.
Possible values:
- Name
- CreationTime
- Status
#sort_order ⇒ String
Whether to sort the results in Ascending
or Descending
order. The
default is Descending
.
Possible values:
- Ascending
- Descending
#status_equals ⇒ String
A filter that returns only monitoring schedules modified before a specified time.
Possible values:
- Pending
- Failed
- Scheduled
- Stopped