| Copyright | (c) 2013-2015 Brendan Hay |
|---|---|
| License | Mozilla Public License, v. 2.0. |
| Maintainer | Brendan Hay <brendan.g.hay@gmail.com> |
| Stability | auto-generated |
| Portability | non-portable (GHC extensions) |
| Safe Haskell | None |
| Language | Haskell2010 |
Network.AWS.ECS.ListServices
Description
Lists the services that are running in a specified cluster.
See: AWS API Reference for ListServices.
This operation returns paginated results.
- listServices :: ListServices
- data ListServices
- lsCluster :: Lens' ListServices (Maybe Text)
- lsNextToken :: Lens' ListServices (Maybe Text)
- lsMaxResults :: Lens' ListServices (Maybe Int)
- listServicesResponse :: Int -> ListServicesResponse
- data ListServicesResponse
- lsrsServiceARNs :: Lens' ListServicesResponse [Text]
- lsrsNextToken :: Lens' ListServicesResponse (Maybe Text)
- lsrsResponseStatus :: Lens' ListServicesResponse Int
Creating a Request
listServices :: ListServices Source
Creates a value of ListServices with the minimum fields required to make a request.
Use one of the following lenses to modify other fields as desired:
data ListServices Source
See: listServices smart constructor.
Instances
Request Lenses
lsCluster :: Lens' ListServices (Maybe Text) Source
The short name or full Amazon Resource Name (ARN) of the cluster that hosts the services you want to list. If you do not specify a cluster, the default cluster is assumed..
lsNextToken :: Lens' ListServices (Maybe Text) Source
The nextToken value returned from a previous paginated ListServices
request where maxResults was used and the results exceeded the value
of that parameter. Pagination continues from the end of the previous
results that returned the nextToken value. This value is null when
there are no more results to return.
lsMaxResults :: Lens' ListServices (Maybe Int) Source
The maximum number of container instance results returned by
ListServices in paginated output. When this parameter is used,
ListServices only returns maxResults results in a single page along
with a nextToken response element. The remaining results of the
initial request can be seen by sending another ListServices request
with the returned nextToken value. This value can be between 1 and
100. If this parameter is not used, then ListServices returns up to
100 results and a nextToken value if applicable.
Destructuring the Response
Arguments
| :: Int | |
| -> ListServicesResponse |
Creates a value of ListServicesResponse with the minimum fields required to make a request.
Use one of the following lenses to modify other fields as desired:
data ListServicesResponse Source
See: listServicesResponse smart constructor.
Response Lenses
lsrsServiceARNs :: Lens' ListServicesResponse [Text] Source
The list of full Amazon Resource Name (ARN) entries for each service associated with the specified cluster.
lsrsNextToken :: Lens' ListServicesResponse (Maybe Text) Source
The nextToken value to include in a future ListServices request.
When the results of a ListServices request exceed maxResults, this
value can be used to retrieve the next page of results. This value is
null when there are no more results to return.
lsrsResponseStatus :: Lens' ListServicesResponse Int Source
The response status code.