| Copyright | (c) 2013-2016 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.CodePipeline.ListActionTypes
Description
Gets a summary of all AWS CodePipeline action types associated with your account.
- listActionTypes :: ListActionTypes
- data ListActionTypes
- latActionOwnerFilter :: Lens' ListActionTypes (Maybe ActionOwner)
- latNextToken :: Lens' ListActionTypes (Maybe Text)
- listActionTypesResponse :: Int -> ListActionTypesResponse
- data ListActionTypesResponse
- latrsNextToken :: Lens' ListActionTypesResponse (Maybe Text)
- latrsResponseStatus :: Lens' ListActionTypesResponse Int
- latrsActionTypes :: Lens' ListActionTypesResponse [ActionType]
Creating a Request
listActionTypes :: ListActionTypes #
Creates a value of ListActionTypes with the minimum fields required to make a request.
Use one of the following lenses to modify other fields as desired:
latActionOwnerFilter- Filters the list of action types to those created by a specified entity.latNextToken- An identifier that was returned from the previous list action types call, which can be used to return the next set of action types in the list.
data ListActionTypes #
Represents the input of a list action types action.
See: listActionTypes smart constructor.
Instances
Request Lenses
latActionOwnerFilter :: Lens' ListActionTypes (Maybe ActionOwner) #
Filters the list of action types to those created by a specified entity.
latNextToken :: Lens' ListActionTypes (Maybe Text) #
An identifier that was returned from the previous list action types call, which can be used to return the next set of action types in the list.
Destructuring the Response
Arguments
| :: Int | |
| -> ListActionTypesResponse |
Creates a value of ListActionTypesResponse with the minimum fields required to make a request.
Use one of the following lenses to modify other fields as desired:
latrsNextToken- If the amount of returned information is significantly large, an identifier is also returned which can be used in a subsequent list action types call to return the next set of action types in the list.latrsResponseStatus- -- | The response status code.latrsActionTypes- Provides details of the action types.
data ListActionTypesResponse #
Represents the output of a list action types action.
See: listActionTypesResponse smart constructor.
Response Lenses
latrsNextToken :: Lens' ListActionTypesResponse (Maybe Text) #
If the amount of returned information is significantly large, an identifier is also returned which can be used in a subsequent list action types call to return the next set of action types in the list.
latrsResponseStatus :: Lens' ListActionTypesResponse Int #
- - | The response status code.
latrsActionTypes :: Lens' ListActionTypesResponse [ActionType] #
Provides details of the action types.