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

Class: Aws::SageMaker::Types::ListImagesRequest

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

Overview

Note:

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

{
  creation_time_after: Time.now,
  creation_time_before: Time.now,
  last_modified_time_after: Time.now,
  last_modified_time_before: Time.now,
  max_results: 1,
  name_contains: "ImageNameContains",
  next_token: "NextToken",
  sort_by: "CREATION_TIME", # accepts CREATION_TIME, LAST_MODIFIED_TIME, IMAGE_NAME
  sort_order: "ASCENDING", # accepts ASCENDING, DESCENDING
}

Instance Attribute Summary collapse

Instance Attribute Details

#creation_time_afterTime

A filter that returns only images created on or after the specified time.

Returns:

  • (Time)

    A filter that returns only images created on or after the specified time.

#creation_time_beforeTime

A filter that returns only images created on or before the specified time.

Returns:

  • (Time)

    A filter that returns only images created on or before the specified time.

#last_modified_time_afterTime

A filter that returns only images modified on or after the specified time.

Returns:

  • (Time)

    A filter that returns only images modified on or after the specified time.

#last_modified_time_beforeTime

A filter that returns only images modified on or before the specified time.

Returns:

  • (Time)

    A filter that returns only images modified on or before the specified time.

#max_resultsInteger

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

Returns:

  • (Integer)

    The maximum number of images to return in the response.

#name_containsString

A filter that returns only images whose name contains the specified string.

Returns:

  • (String)

    A filter that returns only images whose name contains the specified string.

#next_tokenString

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

Returns:

  • (String)

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

#sort_byString

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

Possible values:

  • CREATION_TIME
  • LAST_MODIFIED_TIME
  • IMAGE_NAME

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.