| 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.SSM.DescribeMaintenanceWindowTasks
Description
Lists the tasks in a Maintenance Window.
Synopsis
- describeMaintenanceWindowTasks :: Text -> DescribeMaintenanceWindowTasks
- data DescribeMaintenanceWindowTasks
- dFilters :: Lens' DescribeMaintenanceWindowTasks [MaintenanceWindowFilter]
- dNextToken :: Lens' DescribeMaintenanceWindowTasks (Maybe Text)
- dMaxResults :: Lens' DescribeMaintenanceWindowTasks (Maybe Natural)
- dWindowId :: Lens' DescribeMaintenanceWindowTasks Text
- describeMaintenanceWindowTasksResponse :: Int -> DescribeMaintenanceWindowTasksResponse
- data DescribeMaintenanceWindowTasksResponse
- dmwtsrsTasks :: Lens' DescribeMaintenanceWindowTasksResponse [MaintenanceWindowTask]
- dmwtsrsNextToken :: Lens' DescribeMaintenanceWindowTasksResponse (Maybe Text)
- dmwtsrsResponseStatus :: Lens' DescribeMaintenanceWindowTasksResponse Int
Creating a Request
describeMaintenanceWindowTasks Source #
Arguments
| :: Text | |
| -> DescribeMaintenanceWindowTasks |
Creates a value of DescribeMaintenanceWindowTasks with the minimum fields required to make a request.
Use one of the following lenses to modify other fields as desired:
dFilters- Optional filters used to narrow down the scope of the returned tasks. The supported filter keys are WindowTaskId, TaskArn, Priority, and TaskType.dNextToken- The token for the next set of items to return. (You received this token from a previous call.)dMaxResults- The maximum number of items to return for this call. The call also returns a token that you can specify in a subsequent call to get the next set of results.dWindowId- The ID of the Maintenance Window whose tasks should be retrieved.
data DescribeMaintenanceWindowTasks Source #
See: describeMaintenanceWindowTasks smart constructor.
Instances
Request Lenses
dFilters :: Lens' DescribeMaintenanceWindowTasks [MaintenanceWindowFilter] Source #
Optional filters used to narrow down the scope of the returned tasks. The supported filter keys are WindowTaskId, TaskArn, Priority, and TaskType.
dNextToken :: Lens' DescribeMaintenanceWindowTasks (Maybe Text) Source #
The token for the next set of items to return. (You received this token from a previous call.)
dMaxResults :: Lens' DescribeMaintenanceWindowTasks (Maybe Natural) Source #
The maximum number of items to return for this call. The call also returns a token that you can specify in a subsequent call to get the next set of results.
dWindowId :: Lens' DescribeMaintenanceWindowTasks Text Source #
The ID of the Maintenance Window whose tasks should be retrieved.
Destructuring the Response
describeMaintenanceWindowTasksResponse Source #
Creates a value of DescribeMaintenanceWindowTasksResponse with the minimum fields required to make a request.
Use one of the following lenses to modify other fields as desired:
dmwtsrsTasks- Information about the tasks in the Maintenance Window.dmwtsrsNextToken- The token to use when requesting the next set of items. If there are no additional items to return, the string is empty.dmwtsrsResponseStatus- -- | The response status code.
data DescribeMaintenanceWindowTasksResponse Source #
See: describeMaintenanceWindowTasksResponse smart constructor.
Instances
Response Lenses
dmwtsrsTasks :: Lens' DescribeMaintenanceWindowTasksResponse [MaintenanceWindowTask] Source #
Information about the tasks in the Maintenance Window.
dmwtsrsNextToken :: Lens' DescribeMaintenanceWindowTasksResponse (Maybe Text) Source #
The token to use when requesting the next set of items. If there are no additional items to return, the string is empty.
dmwtsrsResponseStatus :: Lens' DescribeMaintenanceWindowTasksResponse Int Source #
- - | The response status code.