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 |
List the candidates created for the job.
This operation returns paginated results.
Synopsis
- data ListCandidatesForAutoMLJob = ListCandidatesForAutoMLJob' {}
- newListCandidatesForAutoMLJob :: Text -> ListCandidatesForAutoMLJob
- listCandidatesForAutoMLJob_candidateNameEquals :: Lens' ListCandidatesForAutoMLJob (Maybe Text)
- listCandidatesForAutoMLJob_nextToken :: Lens' ListCandidatesForAutoMLJob (Maybe Text)
- listCandidatesForAutoMLJob_sortOrder :: Lens' ListCandidatesForAutoMLJob (Maybe AutoMLSortOrder)
- listCandidatesForAutoMLJob_statusEquals :: Lens' ListCandidatesForAutoMLJob (Maybe CandidateStatus)
- listCandidatesForAutoMLJob_maxResults :: Lens' ListCandidatesForAutoMLJob (Maybe Natural)
- listCandidatesForAutoMLJob_sortBy :: Lens' ListCandidatesForAutoMLJob (Maybe CandidateSortBy)
- listCandidatesForAutoMLJob_autoMLJobName :: Lens' ListCandidatesForAutoMLJob Text
- data ListCandidatesForAutoMLJobResponse = ListCandidatesForAutoMLJobResponse' {
- nextToken :: Maybe Text
- httpStatus :: Int
- candidates :: [AutoMLCandidate]
- newListCandidatesForAutoMLJobResponse :: Int -> ListCandidatesForAutoMLJobResponse
- listCandidatesForAutoMLJobResponse_nextToken :: Lens' ListCandidatesForAutoMLJobResponse (Maybe Text)
- listCandidatesForAutoMLJobResponse_httpStatus :: Lens' ListCandidatesForAutoMLJobResponse Int
- listCandidatesForAutoMLJobResponse_candidates :: Lens' ListCandidatesForAutoMLJobResponse [AutoMLCandidate]
Creating a Request
data ListCandidatesForAutoMLJob Source #
See: newListCandidatesForAutoMLJob
smart constructor.
ListCandidatesForAutoMLJob' | |
|
Instances
newListCandidatesForAutoMLJob Source #
Create a value of ListCandidatesForAutoMLJob
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:candidateNameEquals:ListCandidatesForAutoMLJob'
, listCandidatesForAutoMLJob_candidateNameEquals
- List the candidates for the job and filter by candidate name.
$sel:nextToken:ListCandidatesForAutoMLJob'
, listCandidatesForAutoMLJob_nextToken
- If the previous response was truncated, you receive this token. Use it
in your next request to receive the next set of results.
$sel:sortOrder:ListCandidatesForAutoMLJob'
, listCandidatesForAutoMLJob_sortOrder
- The sort order for the results. The default is Ascending
.
$sel:statusEquals:ListCandidatesForAutoMLJob'
, listCandidatesForAutoMLJob_statusEquals
- List the candidates for the job and filter by status.
$sel:maxResults:ListCandidatesForAutoMLJob'
, listCandidatesForAutoMLJob_maxResults
- List the job's candidates up to a specified limit.
$sel:sortBy:ListCandidatesForAutoMLJob'
, listCandidatesForAutoMLJob_sortBy
- The parameter by which to sort the results. The default is Descending
.
$sel:autoMLJobName:ListCandidatesForAutoMLJob'
, listCandidatesForAutoMLJob_autoMLJobName
- List the candidates created for the job by providing the job's name.
Request Lenses
listCandidatesForAutoMLJob_candidateNameEquals :: Lens' ListCandidatesForAutoMLJob (Maybe Text) Source #
List the candidates for the job and filter by candidate name.
listCandidatesForAutoMLJob_nextToken :: Lens' ListCandidatesForAutoMLJob (Maybe Text) Source #
If the previous response was truncated, you receive this token. Use it in your next request to receive the next set of results.
listCandidatesForAutoMLJob_sortOrder :: Lens' ListCandidatesForAutoMLJob (Maybe AutoMLSortOrder) Source #
The sort order for the results. The default is Ascending
.
listCandidatesForAutoMLJob_statusEquals :: Lens' ListCandidatesForAutoMLJob (Maybe CandidateStatus) Source #
List the candidates for the job and filter by status.
listCandidatesForAutoMLJob_maxResults :: Lens' ListCandidatesForAutoMLJob (Maybe Natural) Source #
List the job's candidates up to a specified limit.
listCandidatesForAutoMLJob_sortBy :: Lens' ListCandidatesForAutoMLJob (Maybe CandidateSortBy) Source #
The parameter by which to sort the results. The default is Descending
.
listCandidatesForAutoMLJob_autoMLJobName :: Lens' ListCandidatesForAutoMLJob Text Source #
List the candidates created for the job by providing the job's name.
Destructuring the Response
data ListCandidatesForAutoMLJobResponse Source #
See: newListCandidatesForAutoMLJobResponse
smart constructor.
ListCandidatesForAutoMLJobResponse' | |
|
Instances
newListCandidatesForAutoMLJobResponse Source #
Create a value of ListCandidatesForAutoMLJobResponse
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:ListCandidatesForAutoMLJob'
, listCandidatesForAutoMLJobResponse_nextToken
- If the previous response was truncated, you receive this token. Use it
in your next request to receive the next set of results.
$sel:httpStatus:ListCandidatesForAutoMLJobResponse'
, listCandidatesForAutoMLJobResponse_httpStatus
- The response's http status code.
$sel:candidates:ListCandidatesForAutoMLJobResponse'
, listCandidatesForAutoMLJobResponse_candidates
- Summaries about the AutoMLCandidates
.
Response Lenses
listCandidatesForAutoMLJobResponse_nextToken :: Lens' ListCandidatesForAutoMLJobResponse (Maybe Text) Source #
If the previous response was truncated, you receive this token. Use it in your next request to receive the next set of results.
listCandidatesForAutoMLJobResponse_httpStatus :: Lens' ListCandidatesForAutoMLJobResponse Int Source #
The response's http status code.
listCandidatesForAutoMLJobResponse_candidates :: Lens' ListCandidatesForAutoMLJobResponse [AutoMLCandidate] Source #
Summaries about the AutoMLCandidates
.