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
show all
Defined in:
(unknown)

Overview

Note:

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

Instance Attribute Details

#creation_time_afterTime

A filter that returns only jobs created after a specified time.

Returns:

  • (Time)

    A filter that returns only jobs created after a specified time.

#creation_time_beforeTime

A filter that returns only jobs created before a specified time.

Returns:

  • (Time)

    A filter that returns only jobs created before a specified time.

#endpoint_nameString

Name of a specific endpoint to fetch jobs for.

Returns:

  • (String)

    Name of a specific endpoint to fetch jobs for.

#last_modified_time_afterTime

A filter that returns only jobs modified before a specified time.

Returns:

  • (Time)

    A filter that returns only jobs modified before a specified time.

#last_modified_time_beforeTime

A filter that returns only jobs modified after a specified time.

Returns:

  • (Time)

    A filter that returns only jobs modified after a specified time.

#max_resultsInteger

The maximum number of jobs to return in the response. The default value is 10.

Returns:

  • (Integer)

    The maximum number of jobs to return in the response.

#monitoring_schedule_nameString

Name of a specific schedule to fetch jobs for.

Returns:

  • (String)

    Name of a specific schedule to fetch jobs for.

#next_tokenString

The token returned if the response is truncated. To retrieve the next set of job executions, use it in the next request.

Returns:

  • (String)

    The token returned if the response is truncated.

#scheduled_time_afterTime

Filter for jobs scheduled after a specified time.

Returns:

  • (Time)

    Filter for jobs scheduled after a specified time.

#scheduled_time_beforeTime

Filter for jobs scheduled before a specified time.

Returns:

  • (Time)

    Filter for jobs scheduled before a specified time.

#sort_byString

Whether to sort results by Status, CreationTime, ScheduledTime field. The default is CreationTime.

Possible values:

  • CreationTime
  • ScheduledTime
  • Status

Returns:

  • (String)

    Whether to sort results by Status, CreationTime, ScheduledTime field.

#sort_orderString

Whether to sort the results in Ascending or Descending order. The default is Descending.

Possible values:

  • Ascending
  • Descending

Returns:

  • (String)

    Whether to sort the results in Ascending or Descending order.

#status_equalsString

A filter that retrieves only jobs with a specific status.

Possible values:

  • Pending
  • Completed
  • CompletedWithViolations
  • InProgress
  • Failed
  • Stopping
  • Stopped

Returns:

  • (String)

    A filter that retrieves only jobs with a specific status.