| Copyright | (c) 2013-2023 Brendan Hay | 
|---|---|
| License | Mozilla Public License, v. 2.0. | 
| Maintainer | Brendan Hay | 
| Stability | auto-generated | 
| Portability | non-portable (GHC extensions) | 
| Safe Haskell | Safe-Inferred | 
| Language | Haskell2010 | 
Amazonka.SageMaker.ListAppImageConfigs
Description
Lists the AppImageConfigs in your account and their properties. The list can be filtered by creation time or modified time, and whether the AppImageConfig name contains a specified string.
This operation returns paginated results.
Synopsis
- data ListAppImageConfigs = ListAppImageConfigs' {}
 - newListAppImageConfigs :: ListAppImageConfigs
 - listAppImageConfigs_creationTimeAfter :: Lens' ListAppImageConfigs (Maybe UTCTime)
 - listAppImageConfigs_creationTimeBefore :: Lens' ListAppImageConfigs (Maybe UTCTime)
 - listAppImageConfigs_maxResults :: Lens' ListAppImageConfigs (Maybe Natural)
 - listAppImageConfigs_modifiedTimeAfter :: Lens' ListAppImageConfigs (Maybe UTCTime)
 - listAppImageConfigs_modifiedTimeBefore :: Lens' ListAppImageConfigs (Maybe UTCTime)
 - listAppImageConfigs_nameContains :: Lens' ListAppImageConfigs (Maybe Text)
 - listAppImageConfigs_nextToken :: Lens' ListAppImageConfigs (Maybe Text)
 - listAppImageConfigs_sortBy :: Lens' ListAppImageConfigs (Maybe AppImageConfigSortKey)
 - listAppImageConfigs_sortOrder :: Lens' ListAppImageConfigs (Maybe SortOrder)
 - data ListAppImageConfigsResponse = ListAppImageConfigsResponse' {}
 - newListAppImageConfigsResponse :: Int -> ListAppImageConfigsResponse
 - listAppImageConfigsResponse_appImageConfigs :: Lens' ListAppImageConfigsResponse (Maybe [AppImageConfigDetails])
 - listAppImageConfigsResponse_nextToken :: Lens' ListAppImageConfigsResponse (Maybe Text)
 - listAppImageConfigsResponse_httpStatus :: Lens' ListAppImageConfigsResponse Int
 
Creating a Request
data ListAppImageConfigs Source #
See: newListAppImageConfigs smart constructor.
Constructors
| ListAppImageConfigs' | |
Fields 
  | |
Instances
newListAppImageConfigs :: ListAppImageConfigs Source #
Create a value of ListAppImageConfigs with all optional fields omitted.
Use generic-lens or optics to modify other optional fields.
The following record fields are available, with the corresponding lenses provided for backwards compatibility:
$sel:creationTimeAfter:ListAppImageConfigs', listAppImageConfigs_creationTimeAfter - A filter that returns only AppImageConfigs created on or after the
 specified time.
$sel:creationTimeBefore:ListAppImageConfigs', listAppImageConfigs_creationTimeBefore - A filter that returns only AppImageConfigs created on or before the
 specified time.
$sel:maxResults:ListAppImageConfigs', listAppImageConfigs_maxResults - The maximum number of AppImageConfigs to return in the response. The
 default value is 10.
$sel:modifiedTimeAfter:ListAppImageConfigs', listAppImageConfigs_modifiedTimeAfter - A filter that returns only AppImageConfigs modified on or after the
 specified time.
$sel:modifiedTimeBefore:ListAppImageConfigs', listAppImageConfigs_modifiedTimeBefore - A filter that returns only AppImageConfigs modified on or before the
 specified time.
$sel:nameContains:ListAppImageConfigs', listAppImageConfigs_nameContains - A filter that returns only AppImageConfigs whose name contains the
 specified string.
ListAppImageConfigs, listAppImageConfigs_nextToken - 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.
$sel:sortBy:ListAppImageConfigs', listAppImageConfigs_sortBy - The property used to sort results. The default value is CreationTime.
$sel:sortOrder:ListAppImageConfigs', listAppImageConfigs_sortOrder - The sort order. The default value is Descending.
Request Lenses
listAppImageConfigs_creationTimeAfter :: Lens' ListAppImageConfigs (Maybe UTCTime) Source #
A filter that returns only AppImageConfigs created on or after the specified time.
listAppImageConfigs_creationTimeBefore :: Lens' ListAppImageConfigs (Maybe UTCTime) Source #
A filter that returns only AppImageConfigs created on or before the specified time.
listAppImageConfigs_maxResults :: Lens' ListAppImageConfigs (Maybe Natural) Source #
The maximum number of AppImageConfigs to return in the response. The default value is 10.
listAppImageConfigs_modifiedTimeAfter :: Lens' ListAppImageConfigs (Maybe UTCTime) Source #
A filter that returns only AppImageConfigs modified on or after the specified time.
listAppImageConfigs_modifiedTimeBefore :: Lens' ListAppImageConfigs (Maybe UTCTime) Source #
A filter that returns only AppImageConfigs modified on or before the specified time.
listAppImageConfigs_nameContains :: Lens' ListAppImageConfigs (Maybe Text) Source #
A filter that returns only AppImageConfigs whose name contains the specified string.
listAppImageConfigs_nextToken :: Lens' ListAppImageConfigs (Maybe Text) Source #
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.
listAppImageConfigs_sortBy :: Lens' ListAppImageConfigs (Maybe AppImageConfigSortKey) Source #
The property used to sort results. The default value is CreationTime.
listAppImageConfigs_sortOrder :: Lens' ListAppImageConfigs (Maybe SortOrder) Source #
The sort order. The default value is Descending.
Destructuring the Response
data ListAppImageConfigsResponse Source #
See: newListAppImageConfigsResponse smart constructor.
Constructors
| ListAppImageConfigsResponse' | |
Fields 
  | |
Instances
newListAppImageConfigsResponse Source #
Create a value of ListAppImageConfigsResponse with all optional fields omitted.
Use generic-lens or optics to modify other optional fields.
The following record fields are available, with the corresponding lenses provided for backwards compatibility:
$sel:appImageConfigs:ListAppImageConfigsResponse', listAppImageConfigsResponse_appImageConfigs - A list of AppImageConfigs and their properties.
ListAppImageConfigs, listAppImageConfigsResponse_nextToken - A token for getting the next set of AppImageConfigs, if there are any.
$sel:httpStatus:ListAppImageConfigsResponse', listAppImageConfigsResponse_httpStatus - The response's http status code.
Response Lenses
listAppImageConfigsResponse_appImageConfigs :: Lens' ListAppImageConfigsResponse (Maybe [AppImageConfigDetails]) Source #
A list of AppImageConfigs and their properties.
listAppImageConfigsResponse_nextToken :: Lens' ListAppImageConfigsResponse (Maybe Text) Source #
A token for getting the next set of AppImageConfigs, if there are any.
listAppImageConfigsResponse_httpStatus :: Lens' ListAppImageConfigsResponse Int Source #
The response's http status code.