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

Overview

Note:

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

Instance Attribute Details

#creation_time_afterTime

A filter that returns only monitoring schedules created after a specified time.

Returns:

  • (Time)

    A filter that returns only monitoring schedules created after a specified time.

#creation_time_beforeTime

A filter that returns only monitoring schedules created before a specified time.

Returns:

  • (Time)

    A filter that returns only monitoring schedules created before a specified time.

#endpoint_nameString

Name of a specific endpoint to fetch schedules for.

Returns:

  • (String)

    Name of a specific endpoint to fetch schedules for.

#last_modified_time_afterTime

A filter that returns only monitoring schedules modified after a specified time.

Returns:

  • (Time)

    A filter that returns only monitoring schedules modified after a specified time.

#last_modified_time_beforeTime

A filter that returns only monitoring schedules modified before a specified time.

Returns:

  • (Time)

    A filter that returns only monitoring schedules modified before 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.

#name_containsString

Filter for monitoring schedules whose name contains a specified string.

Returns:

  • (String)

    Filter for monitoring schedules whose name contains a specified string.

#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.

#sort_byString

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

Possible values:

  • Name
  • CreationTime
  • 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 returns only monitoring schedules modified before a specified time.

Possible values:

  • Pending
  • Failed
  • Scheduled
  • Stopped

Returns:

  • (String)

    A filter that returns only monitoring schedules modified before a specified time.