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

Class: Aws::SageMaker::Types::ListImageVersionsRequest

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

Overview

Note:

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

{
  creation_time_after: Time.now,
  creation_time_before: Time.now,
  image_name: "ImageName", # required
  last_modified_time_after: Time.now,
  last_modified_time_before: Time.now,
  max_results: 1,
  next_token: "NextToken",
  sort_by: "CREATION_TIME", # accepts CREATION_TIME, LAST_MODIFIED_TIME, VERSION
  sort_order: "ASCENDING", # accepts ASCENDING, DESCENDING
}

Instance Attribute Summary collapse

Instance Attribute Details

#creation_time_afterTime

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

Returns:

  • (Time)

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

#creation_time_beforeTime

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

Returns:

  • (Time)

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

#image_nameString

The name of the image to list the versions of.

Returns:

  • (String)

    The name of the image to list the versions of.

#last_modified_time_afterTime

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

Returns:

  • (Time)

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

#last_modified_time_beforeTime

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

Returns:

  • (Time)

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

#max_resultsInteger

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

Returns:

  • (Integer)

    The maximum number of versions to return in the response.

#next_tokenString

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

Returns:

  • (String)

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

#sort_byString

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

Possible values:

  • CREATION_TIME
  • LAST_MODIFIED_TIME
  • VERSION

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.