You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.
Class: Aws::SageMaker::Types::ListMonitoringExecutionsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::ListMonitoringExecutionsRequest
- Defined in:
- (unknown)
Overview
When passing ListMonitoringExecutionsRequest as input to an Aws::Client method, you can use a vanilla Hash:
{
monitoring_schedule_name: "MonitoringScheduleName",
endpoint_name: "EndpointName",
sort_by: "CreationTime", # accepts CreationTime, ScheduledTime, Status
sort_order: "Ascending", # accepts Ascending, Descending
next_token: "NextToken",
max_results: 1,
scheduled_time_before: Time.now,
scheduled_time_after: Time.now,
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, Completed, CompletedWithViolations, InProgress, Failed, Stopping, Stopped
}
Instance Attribute Summary collapse
-
#creation_time_after ⇒ Time
A filter that returns only jobs created after a specified time.
-
#creation_time_before ⇒ Time
A filter that returns only jobs created before a specified time.
-
#endpoint_name ⇒ String
Name of a specific endpoint to fetch jobs for.
-
#last_modified_time_after ⇒ Time
A filter that returns only jobs modified before a specified time.
-
#last_modified_time_before ⇒ Time
A filter that returns only jobs modified after a specified time.
-
#max_results ⇒ Integer
The maximum number of jobs to return in the response.
-
#monitoring_schedule_name ⇒ String
Name of a specific schedule to fetch jobs for.
-
#next_token ⇒ String
The token returned if the response is truncated.
-
#scheduled_time_after ⇒ Time
Filter for jobs scheduled after a specified time.
-
#scheduled_time_before ⇒ Time
Filter for jobs scheduled before a specified time.
-
#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 retrieves only jobs with a specific status.
Instance Attribute Details
#creation_time_after ⇒ Time
A filter that returns only jobs created after a specified time.
#creation_time_before ⇒ Time
A filter that returns only jobs created before a specified time.
#endpoint_name ⇒ String
Name of a specific endpoint to fetch jobs for.
#last_modified_time_after ⇒ Time
A filter that returns only jobs modified before a specified time.
#last_modified_time_before ⇒ Time
A filter that returns only jobs modified after a specified time.
#max_results ⇒ Integer
The maximum number of jobs to return in the response. The default value is 10.
#monitoring_schedule_name ⇒ String
Name of a specific schedule to fetch jobs for.
#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.
#scheduled_time_after ⇒ Time
Filter for jobs scheduled after a specified time.
#scheduled_time_before ⇒ Time
Filter for jobs scheduled before a specified time.
#sort_by ⇒ String
Whether to sort results by Status
, CreationTime
, ScheduledTime
field. The default is CreationTime
.
Possible values:
- CreationTime
- ScheduledTime
- 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 retrieves only jobs with a specific status.
Possible values:
- Pending
- Completed
- CompletedWithViolations
- InProgress
- Failed
- Stopping
- Stopped