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 paginated list of deployments.
This operation returns paginated results.
Synopsis
- data ListDeployments = ListDeployments' {}
- newListDeployments :: ListDeployments
- listDeployments_targetArn :: Lens' ListDeployments (Maybe Text)
- listDeployments_nextToken :: Lens' ListDeployments (Maybe Text)
- listDeployments_historyFilter :: Lens' ListDeployments (Maybe DeploymentHistoryFilter)
- listDeployments_maxResults :: Lens' ListDeployments (Maybe Natural)
- data ListDeploymentsResponse = ListDeploymentsResponse' {
- nextToken :: Maybe Text
- deployments :: Maybe [Deployment]
- httpStatus :: Int
- newListDeploymentsResponse :: Int -> ListDeploymentsResponse
- listDeploymentsResponse_nextToken :: Lens' ListDeploymentsResponse (Maybe Text)
- listDeploymentsResponse_deployments :: Lens' ListDeploymentsResponse (Maybe [Deployment])
- listDeploymentsResponse_httpStatus :: Lens' ListDeploymentsResponse Int
Creating a Request
data ListDeployments Source #
See: newListDeployments
smart constructor.
ListDeployments' | |
|
Instances
newListDeployments :: ListDeployments Source #
Create a value of ListDeployments
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:targetArn:ListDeployments'
, listDeployments_targetArn
- The
ARN
of the target IoT thing or thing group.
$sel:nextToken:ListDeployments'
, listDeployments_nextToken
- The token to be used for the next set of paginated results.
$sel:historyFilter:ListDeployments'
, listDeployments_historyFilter
- The filter for the list of deployments. Choose one of the following
options:
ALL
– The list includes all deployments.LATEST_ONLY
– The list includes only the latest revision of each deployment.
Default: LATEST_ONLY
$sel:maxResults:ListDeployments'
, listDeployments_maxResults
- The maximum number of results to be returned per paginated request.
Request Lenses
listDeployments_targetArn :: Lens' ListDeployments (Maybe Text) Source #
The ARN of the target IoT thing or thing group.
listDeployments_nextToken :: Lens' ListDeployments (Maybe Text) Source #
The token to be used for the next set of paginated results.
listDeployments_historyFilter :: Lens' ListDeployments (Maybe DeploymentHistoryFilter) Source #
The filter for the list of deployments. Choose one of the following options:
ALL
– The list includes all deployments.LATEST_ONLY
– The list includes only the latest revision of each deployment.
Default: LATEST_ONLY
listDeployments_maxResults :: Lens' ListDeployments (Maybe Natural) Source #
The maximum number of results to be returned per paginated request.
Destructuring the Response
data ListDeploymentsResponse Source #
See: newListDeploymentsResponse
smart constructor.
ListDeploymentsResponse' | |
|
Instances
newListDeploymentsResponse Source #
Create a value of ListDeploymentsResponse
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:ListDeployments'
, listDeploymentsResponse_nextToken
- The token for the next set of results, or null if there are no
additional results.
$sel:deployments:ListDeploymentsResponse'
, listDeploymentsResponse_deployments
- A list that summarizes each deployment.
$sel:httpStatus:ListDeploymentsResponse'
, listDeploymentsResponse_httpStatus
- The response's http status code.
Response Lenses
listDeploymentsResponse_nextToken :: Lens' ListDeploymentsResponse (Maybe Text) Source #
The token for the next set of results, or null if there are no additional results.
listDeploymentsResponse_deployments :: Lens' ListDeploymentsResponse (Maybe [Deployment]) Source #
A list that summarizes each deployment.
listDeploymentsResponse_httpStatus :: Lens' ListDeploymentsResponse Int Source #
The response's http status code.