Copyright | (c) 2013-2021 Brendan Hay |
---|---|
License | Mozilla Public License, v. 2.0. |
Maintainer | Brendan Hay <brendan.g.hay+amazonka@gmail.com> |
Stability | auto-generated |
Portability | non-portable (GHC extensions) |
Safe Haskell | None |
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_nameContains :: Lens' ListAppImageConfigs (Maybe Text)
- listAppImageConfigs_creationTimeAfter :: Lens' ListAppImageConfigs (Maybe UTCTime)
- listAppImageConfigs_modifiedTimeAfter :: Lens' ListAppImageConfigs (Maybe UTCTime)
- listAppImageConfigs_nextToken :: Lens' ListAppImageConfigs (Maybe Text)
- listAppImageConfigs_sortOrder :: Lens' ListAppImageConfigs (Maybe SortOrder)
- listAppImageConfigs_creationTimeBefore :: Lens' ListAppImageConfigs (Maybe UTCTime)
- listAppImageConfigs_modifiedTimeBefore :: Lens' ListAppImageConfigs (Maybe UTCTime)
- listAppImageConfigs_maxResults :: Lens' ListAppImageConfigs (Maybe Natural)
- listAppImageConfigs_sortBy :: Lens' ListAppImageConfigs (Maybe AppImageConfigSortKey)
- 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.
ListAppImageConfigs' | |
|
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:nameContains:ListAppImageConfigs'
, listAppImageConfigs_nameContains
- A filter that returns only AppImageConfigs whose name contains the
specified string.
$sel:creationTimeAfter:ListAppImageConfigs'
, listAppImageConfigs_creationTimeAfter
- A filter that returns only AppImageConfigs created on or after the
specified time.
$sel:modifiedTimeAfter:ListAppImageConfigs'
, listAppImageConfigs_modifiedTimeAfter
- A filter that returns only AppImageConfigs modified on or after the
specified time.
$sel:nextToken: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:sortOrder:ListAppImageConfigs'
, listAppImageConfigs_sortOrder
- The sort order. The default value is Descending
.
$sel:creationTimeBefore:ListAppImageConfigs'
, listAppImageConfigs_creationTimeBefore
- A filter that returns only AppImageConfigs created on or before the
specified time.
$sel:modifiedTimeBefore:ListAppImageConfigs'
, listAppImageConfigs_modifiedTimeBefore
- A filter that returns only AppImageConfigs modified 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:sortBy:ListAppImageConfigs'
, listAppImageConfigs_sortBy
- The property used to sort results. The default value is CreationTime
.
Request Lenses
listAppImageConfigs_nameContains :: Lens' ListAppImageConfigs (Maybe Text) Source #
A filter that returns only AppImageConfigs whose name contains the specified string.
listAppImageConfigs_creationTimeAfter :: Lens' ListAppImageConfigs (Maybe UTCTime) Source #
A filter that returns only AppImageConfigs created on or after the specified time.
listAppImageConfigs_modifiedTimeAfter :: Lens' ListAppImageConfigs (Maybe UTCTime) Source #
A filter that returns only AppImageConfigs modified on or after the specified time.
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_sortOrder :: Lens' ListAppImageConfigs (Maybe SortOrder) Source #
The sort order. The default value is Descending
.
listAppImageConfigs_creationTimeBefore :: Lens' ListAppImageConfigs (Maybe UTCTime) Source #
A filter that returns only AppImageConfigs created on or before the specified time.
listAppImageConfigs_modifiedTimeBefore :: Lens' ListAppImageConfigs (Maybe UTCTime) Source #
A filter that returns only AppImageConfigs modified 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_sortBy :: Lens' ListAppImageConfigs (Maybe AppImageConfigSortKey) Source #
The property used to sort results. The default value is CreationTime
.
Destructuring the Response
data ListAppImageConfigsResponse Source #
See: newListAppImageConfigsResponse
smart constructor.
ListAppImageConfigsResponse' | |
|
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.
$sel:nextToken: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.