You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::SageMaker::Types::ListExperimentsRequest

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing ListExperimentsRequest as input to an Aws::Client method, you can use a vanilla Hash:

{
  created_after: Time.now,
  created_before: Time.now,
  sort_by: "Name", # accepts Name, CreationTime
  sort_order: "Ascending", # accepts Ascending, Descending
  next_token: "NextToken",
  max_results: 1,
}

Instance Attribute Summary collapse

Instance Attribute Details

#created_afterTime

A filter that returns only experiments created after the specified time.

Returns:

  • (Time)

    A filter that returns only experiments created after the specified time.

#created_beforeTime

A filter that returns only experiments created before the specified time.

Returns:

  • (Time)

    A filter that returns only experiments created before the specified time.

#max_resultsInteger

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

Returns:

  • (Integer)

    The maximum number of experiments to return in the response.

#next_tokenString

If the previous call to ListExperiments didn\'t return the full set of experiments, the call returns a token for getting the next set of experiments.

Returns:

  • (String)

    If the previous call to ListExperiments didn\'t return the full set of experiments, the call returns a token for getting the next set of experiments.

#sort_byString

The property used to sort results. The default value is CreationTime.

Possible values:

  • Name
  • CreationTime

Returns:

  • (String)

    The property used to sort results.

#sort_orderString

The sort order. The default value is Descending.

Possible values:

  • Ascending
  • Descending

Returns:

  • (String)

    The sort order.