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 |
Describes one or more of your job queues.
- describeJobQueues :: DescribeJobQueues
- data DescribeJobQueues
- djqNextToken :: Lens' DescribeJobQueues (Maybe Text)
- djqJobQueues :: Lens' DescribeJobQueues [Text]
- djqMaxResults :: Lens' DescribeJobQueues (Maybe Int)
- describeJobQueuesResponse :: Int -> DescribeJobQueuesResponse
- data DescribeJobQueuesResponse
- djqsrsNextToken :: Lens' DescribeJobQueuesResponse (Maybe Text)
- djqsrsJobQueues :: Lens' DescribeJobQueuesResponse [JobQueueDetail]
- djqsrsResponseStatus :: Lens' DescribeJobQueuesResponse Int
Creating a Request
describeJobQueues :: DescribeJobQueues Source #
Creates a value of DescribeJobQueues
with the minimum fields required to make a request.
Use one of the following lenses to modify other fields as desired:
djqNextToken
- ThenextToken
value returned from a previous paginatedDescribeJobQueues
request wheremaxResults
was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned thenextToken
value. This value isnull
when there are no more results to return.djqJobQueues
- A list of up to 100 queue names or full queue Amazon Resource Name (ARN) entries.djqMaxResults
- The maximum number of results returned byDescribeJobQueues
in paginated output. When this parameter is used,DescribeJobQueues
only returnsmaxResults
results in a single page along with anextToken
response element. The remaining results of the initial request can be seen by sending anotherDescribeJobQueues
request with the returnednextToken
value. This value can be between 1 and 100. If this parameter is not used, thenDescribeJobQueues
returns up to 100 results and anextToken
value if applicable.
data DescribeJobQueues Source #
See: describeJobQueues
smart constructor.
Request Lenses
djqNextToken :: Lens' DescribeJobQueues (Maybe Text) Source #
The nextToken
value returned from a previous paginated DescribeJobQueues
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. This value is null
when there are no more results to return.
djqJobQueues :: Lens' DescribeJobQueues [Text] Source #
A list of up to 100 queue names or full queue Amazon Resource Name (ARN) entries.
djqMaxResults :: Lens' DescribeJobQueues (Maybe Int) Source #
The maximum number of results returned by DescribeJobQueues
in paginated output. When this parameter is used, DescribeJobQueues
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 DescribeJobQueues
request with the returned nextToken
value. This value can be between 1 and 100. If this parameter is not used, then DescribeJobQueues
returns up to 100 results and a nextToken
value if applicable.
Destructuring the Response
describeJobQueuesResponse Source #
Creates a value of DescribeJobQueuesResponse
with the minimum fields required to make a request.
Use one of the following lenses to modify other fields as desired:
djqsrsNextToken
- ThenextToken
value to include in a futureDescribeJobQueues
request. When the results of aDescribeJobQueues
request exceedmaxResults
, this value can be used to retrieve the next page of results. This value isnull
when there are no more results to return.djqsrsJobQueues
- The list of job queues.djqsrsResponseStatus
- -- | The response status code.
data DescribeJobQueuesResponse Source #
See: describeJobQueuesResponse
smart constructor.
Response Lenses
djqsrsNextToken :: Lens' DescribeJobQueuesResponse (Maybe Text) Source #
The nextToken
value to include in a future DescribeJobQueues
request. When the results of a DescribeJobQueues
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.
djqsrsJobQueues :: Lens' DescribeJobQueuesResponse [JobQueueDetail] Source #
The list of job queues.
djqsrsResponseStatus :: Lens' DescribeJobQueuesResponse Int Source #
- - | The response status code.