| 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.DeviceFarm.ListUploads
Description
Gets information about uploads, given an AWS Device Farm project ARN.
This operation returns paginated results.
- listUploads :: Text -> ListUploads
- data ListUploads
- luNextToken :: Lens' ListUploads (Maybe Text)
- luArn :: Lens' ListUploads Text
- listUploadsResponse :: Int -> ListUploadsResponse
- data ListUploadsResponse
- lursNextToken :: Lens' ListUploadsResponse (Maybe Text)
- lursUploads :: Lens' ListUploadsResponse [Upload]
- lursResponseStatus :: Lens' ListUploadsResponse Int
Creating a Request
Arguments
| :: Text | |
| -> ListUploads |
Creates a value of ListUploads with the minimum fields required to make a request.
Use one of the following lenses to modify other fields as desired:
luNextToken- An identifier that was returned from the previous call to this operation, which can be used to return the next set of items in the list.luArn- The Amazon Resource Name (ARN) of the project for which you want to list uploads.
data ListUploads Source #
Represents a request to the list uploads operation.
See: listUploads smart constructor.
Instances
Request Lenses
luNextToken :: Lens' ListUploads (Maybe Text) Source #
An identifier that was returned from the previous call to this operation, which can be used to return the next set of items in the list.
luArn :: Lens' ListUploads Text Source #
The Amazon Resource Name (ARN) of the project for which you want to list uploads.
Destructuring the Response
Arguments
| :: Int | |
| -> ListUploadsResponse |
Creates a value of ListUploadsResponse with the minimum fields required to make a request.
Use one of the following lenses to modify other fields as desired:
lursNextToken- If the number of items that are returned is significantly large, this is an identifier that is also returned, which can be used in a subsequent call to this operation to return the next set of items in the list.lursUploads- Information about the uploads.lursResponseStatus- -- | The response status code.
data ListUploadsResponse Source #
Represents the result of a list uploads request.
See: listUploadsResponse smart constructor.
Response Lenses
lursNextToken :: Lens' ListUploadsResponse (Maybe Text) Source #
If the number of items that are returned is significantly large, this is an identifier that is also returned, which can be used in a subsequent call to this operation to return the next set of items in the list.
lursUploads :: Lens' ListUploadsResponse [Upload] Source #
Information about the uploads.
lursResponseStatus :: Lens' ListUploadsResponse Int Source #
- - | The response status code.