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 |
Retrieves a list of channels that are associated with this account.
This operation returns paginated results.
Synopsis
- data ListChannels = ListChannels' {}
- newListChannels :: ListChannels
- listChannels_nextToken :: Lens' ListChannels (Maybe Text)
- listChannels_maxResults :: Lens' ListChannels (Maybe Natural)
- data ListChannelsResponse = ListChannelsResponse' {}
- newListChannelsResponse :: Int -> ListChannelsResponse
- listChannelsResponse_items :: Lens' ListChannelsResponse (Maybe [Channel])
- listChannelsResponse_nextToken :: Lens' ListChannelsResponse (Maybe Text)
- listChannelsResponse_httpStatus :: Lens' ListChannelsResponse Int
Creating a Request
data ListChannels Source #
See: newListChannels
smart constructor.
Instances
newListChannels :: ListChannels Source #
Create a value of ListChannels
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:nextToken:ListChannels'
, listChannels_nextToken
- Pagination token from the GET list request. Use the token to fetch the
next page of results.
$sel:maxResults:ListChannels'
, listChannels_maxResults
- Upper bound on number of records to return. The maximum number of
results is 100.
Request Lenses
listChannels_nextToken :: Lens' ListChannels (Maybe Text) Source #
Pagination token from the GET list request. Use the token to fetch the next page of results.
listChannels_maxResults :: Lens' ListChannels (Maybe Natural) Source #
Upper bound on number of records to return. The maximum number of results is 100.
Destructuring the Response
data ListChannelsResponse Source #
See: newListChannelsResponse
smart constructor.
Instances
newListChannelsResponse Source #
Create a value of ListChannelsResponse
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:items:ListChannelsResponse'
, listChannelsResponse_items
- An array of channels that are associated with this account.
$sel:nextToken:ListChannels'
, listChannelsResponse_nextToken
- Pagination token returned by the list request when results exceed the
maximum allowed. Use the token to fetch the next page of results.
$sel:httpStatus:ListChannelsResponse'
, listChannelsResponse_httpStatus
- The response's http status code.
Response Lenses
listChannelsResponse_items :: Lens' ListChannelsResponse (Maybe [Channel]) Source #
An array of channels that are associated with this account.
listChannelsResponse_nextToken :: Lens' ListChannelsResponse (Maybe Text) Source #
Pagination token returned by the list request when results exceed the maximum allowed. Use the token to fetch the next page of results.
listChannelsResponse_httpStatus :: Lens' ListChannelsResponse Int Source #
The response's http status code.