| Copyright | (c) 2013-2018 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 |
| Language | Haskell2010 |
Network.AWS.ECS.ListContainerInstances
Description
Returns a list of container instances in a specified cluster. You can filter the results of a ListContainerInstances operation with cluster query language statements inside the filter parameter. For more information, see Cluster Query Language in the Amazon Elastic Container Service Developer Guide .
This operation returns paginated results.
- listContainerInstances :: ListContainerInstances
- data ListContainerInstances
- lciStatus :: Lens' ListContainerInstances (Maybe ContainerInstanceStatus)
- lciCluster :: Lens' ListContainerInstances (Maybe Text)
- lciNextToken :: Lens' ListContainerInstances (Maybe Text)
- lciFilter :: Lens' ListContainerInstances (Maybe Text)
- lciMaxResults :: Lens' ListContainerInstances (Maybe Int)
- listContainerInstancesResponse :: Int -> ListContainerInstancesResponse
- data ListContainerInstancesResponse
- lcirsContainerInstanceARNs :: Lens' ListContainerInstancesResponse [Text]
- lcirsNextToken :: Lens' ListContainerInstancesResponse (Maybe Text)
- lcirsResponseStatus :: Lens' ListContainerInstancesResponse Int
Creating a Request
listContainerInstances :: ListContainerInstances Source #
Creates a value of ListContainerInstances with the minimum fields required to make a request.
Use one of the following lenses to modify other fields as desired:
lciStatus- Filters the container instances by status. For example, if you specify theDRAININGstatus, the results include only container instances that have been set toDRAININGusingUpdateContainerInstancesState. If you do not specify this parameter, the default is to include container instances set toACTIVEandDRAINING.lciCluster- The short name or full Amazon Resource Name (ARN) of the cluster that hosts the container instances to list. If you do not specify a cluster, the default cluster is assumed.lciNextToken- ThenextTokenvalue returned from a previous paginatedListContainerInstancesrequest wheremaxResultswas used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned thenextTokenvalue.lciFilter- You can filter the results of aListContainerInstancesoperation with cluster query language statements. For more information, see Cluster Query Language in the Amazon Elastic Container Service Developer Guide .lciMaxResults- The maximum number of container instance results returned byListContainerInstancesin paginated output. When this parameter is used,ListContainerInstancesonly returnsmaxResultsresults in a single page along with anextTokenresponse element. The remaining results of the initial request can be seen by sending anotherListContainerInstancesrequest with the returnednextTokenvalue. This value can be between 1 and 100. If this parameter is not used, thenListContainerInstancesreturns up to 100 results and anextTokenvalue if applicable.
data ListContainerInstances Source #
See: listContainerInstances smart constructor.
Instances
Request Lenses
lciStatus :: Lens' ListContainerInstances (Maybe ContainerInstanceStatus) Source #
Filters the container instances by status. For example, if you specify the DRAINING status, the results include only container instances that have been set to DRAINING using UpdateContainerInstancesState . If you do not specify this parameter, the default is to include container instances set to ACTIVE and DRAINING .
lciCluster :: Lens' ListContainerInstances (Maybe Text) Source #
The short name or full Amazon Resource Name (ARN) of the cluster that hosts the container instances to list. If you do not specify a cluster, the default cluster is assumed.
lciNextToken :: Lens' ListContainerInstances (Maybe Text) Source #
The nextToken value returned from a previous paginated ListContainerInstances 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.
lciFilter :: Lens' ListContainerInstances (Maybe Text) Source #
You can filter the results of a ListContainerInstances operation with cluster query language statements. For more information, see Cluster Query Language in the Amazon Elastic Container Service Developer Guide .
lciMaxResults :: Lens' ListContainerInstances (Maybe Int) Source #
The maximum number of container instance results returned by ListContainerInstances in paginated output. When this parameter is used, ListContainerInstances 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 ListContainerInstances request with the returned nextToken value. This value can be between 1 and 100. If this parameter is not used, then ListContainerInstances returns up to 100 results and a nextToken value if applicable.
Destructuring the Response
listContainerInstancesResponse Source #
Arguments
| :: Int | |
| -> ListContainerInstancesResponse |
Creates a value of ListContainerInstancesResponse with the minimum fields required to make a request.
Use one of the following lenses to modify other fields as desired:
lcirsContainerInstanceARNs- The list of container instances with full ARN entries for each container instance associated with the specified cluster.lcirsNextToken- ThenextTokenvalue to include in a futureListContainerInstancesrequest. When the results of aListContainerInstancesrequest exceedmaxResults, this value can be used to retrieve the next page of results. This value isnullwhen there are no more results to return.lcirsResponseStatus- -- | The response status code.
data ListContainerInstancesResponse Source #
See: listContainerInstancesResponse smart constructor.
Instances
Response Lenses
lcirsContainerInstanceARNs :: Lens' ListContainerInstancesResponse [Text] Source #
The list of container instances with full ARN entries for each container instance associated with the specified cluster.
lcirsNextToken :: Lens' ListContainerInstancesResponse (Maybe Text) Source #
The nextToken value to include in a future ListContainerInstances request. When the results of a ListContainerInstances 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.
lcirsResponseStatus :: Lens' ListContainerInstancesResponse Int Source #
- - | The response status code.