You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.
Class: Aws::SageMaker::Types::ListAppImageConfigsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::ListAppImageConfigsRequest
- Defined in:
- (unknown)
Overview
When passing ListAppImageConfigsRequest as input to an Aws::Client method, you can use a vanilla Hash:
{
max_results: 1,
next_token: "NextToken",
name_contains: "AppImageConfigName",
creation_time_before: Time.now,
creation_time_after: Time.now,
modified_time_before: Time.now,
modified_time_after: Time.now,
sort_by: "CreationTime", # accepts CreationTime, LastModifiedTime, Name
sort_order: "Ascending", # accepts Ascending, Descending
}
Instance Attribute Summary collapse
-
#creation_time_after ⇒ Time
A filter that returns only AppImageConfigs created on or after the specified time.
-
#creation_time_before ⇒ Time
A filter that returns only AppImageConfigs created on or before the specified time.
-
#max_results ⇒ Integer
The maximum number of AppImageConfigs to return in the response.
-
#modified_time_after ⇒ Time
A filter that returns only AppImageConfigs modified on or after the specified time.
-
#modified_time_before ⇒ Time
A filter that returns only AppImageConfigs modified on or before the specified time.
-
#name_contains ⇒ String
A filter that returns only AppImageConfigs whose name contains the specified string.
-
#next_token ⇒ String
If the previous call to
ListImages
didn\'t return the full set of AppImageConfigs, the call returns a token for getting the next set of AppImageConfigs. -
#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 AppImageConfigs created on or after the specified time.
#creation_time_before ⇒ Time
A filter that returns only AppImageConfigs created on or before the specified time.
#max_results ⇒ Integer
The maximum number of AppImageConfigs to return in the response. The default value is 10.
#modified_time_after ⇒ Time
A filter that returns only AppImageConfigs modified on or after the specified time.
#modified_time_before ⇒ Time
A filter that returns only AppImageConfigs modified on or before the specified time.
#name_contains ⇒ String
A filter that returns only AppImageConfigs whose name contains the specified string.
#next_token ⇒ String
If the previous call to ListImages
didn\'t return the full set of
AppImageConfigs, the call returns a token for getting the next set of
AppImageConfigs.
#sort_by ⇒ String
The property used to sort results. The default value is CreationTime
.
Possible values:
- CreationTime
- LastModifiedTime
- Name
#sort_order ⇒ String
The sort order. The default value is Descending
.
Possible values:
- Ascending
- Descending