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
- Struct
- Aws::SageMaker::Types::ListImageVersionsRequest
- Defined in:
- (unknown)
Overview
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
-
#creation_time_after ⇒ Time
A filter that returns only versions created on or after the specified time.
-
#creation_time_before ⇒ Time
A filter that returns only versions created on or before the specified time.
-
#image_name ⇒ String
The name of the image to list the versions of.
-
#last_modified_time_after ⇒ Time
A filter that returns only versions modified on or after the specified time.
-
#last_modified_time_before ⇒ Time
A filter that returns only versions modified on or before the specified time.
-
#max_results ⇒ Integer
The maximum number of versions to return in the response.
-
#next_token ⇒ 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_by ⇒ String
The property used to sort results.
-
#sort_order ⇒ String
The sort order.
Instance Attribute Details
#creation_time_after ⇒ Time
A filter that returns only versions created on or after the specified time.
#creation_time_before ⇒ Time
A filter that returns only versions created on or before the specified time.
#image_name ⇒ String
The name of the image to list the versions of.
#last_modified_time_after ⇒ Time
A filter that returns only versions modified on or after the specified time.
#last_modified_time_before ⇒ Time
A filter that returns only versions modified on or before the specified time.
#max_results ⇒ Integer
The maximum number of versions to return in the response. The default value is 10.
#next_token ⇒ 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_by ⇒ String
The property used to sort results. The default value is CREATION_TIME
.
Possible values:
- CREATION_TIME
- LAST_MODIFIED_TIME
- VERSION
#sort_order ⇒ String
The sort order. The default value is DESCENDING
.
Possible values:
- ASCENDING
- DESCENDING