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 |
Returns a list of predictor backtest export jobs created using the CreatePredictorBacktestExportJob operation. This operation returns a summary for each backtest export job. You can filter the list using an array of Filter objects.
To retrieve the complete set of properties for a particular backtest export job, use the ARN with the DescribePredictorBacktestExportJob operation.
This operation returns paginated results.
Synopsis
- data ListPredictorBacktestExportJobs = ListPredictorBacktestExportJobs' {}
- newListPredictorBacktestExportJobs :: ListPredictorBacktestExportJobs
- listPredictorBacktestExportJobs_filters :: Lens' ListPredictorBacktestExportJobs (Maybe [Filter])
- listPredictorBacktestExportJobs_nextToken :: Lens' ListPredictorBacktestExportJobs (Maybe Text)
- listPredictorBacktestExportJobs_maxResults :: Lens' ListPredictorBacktestExportJobs (Maybe Natural)
- data ListPredictorBacktestExportJobsResponse = ListPredictorBacktestExportJobsResponse' {}
- newListPredictorBacktestExportJobsResponse :: Int -> ListPredictorBacktestExportJobsResponse
- listPredictorBacktestExportJobsResponse_nextToken :: Lens' ListPredictorBacktestExportJobsResponse (Maybe Text)
- listPredictorBacktestExportJobsResponse_predictorBacktestExportJobs :: Lens' ListPredictorBacktestExportJobsResponse (Maybe [PredictorBacktestExportJobSummary])
- listPredictorBacktestExportJobsResponse_httpStatus :: Lens' ListPredictorBacktestExportJobsResponse Int
Creating a Request
data ListPredictorBacktestExportJobs Source #
See: newListPredictorBacktestExportJobs
smart constructor.
ListPredictorBacktestExportJobs' | |
|
Instances
newListPredictorBacktestExportJobs :: ListPredictorBacktestExportJobs Source #
Create a value of ListPredictorBacktestExportJobs
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:filters:ListPredictorBacktestExportJobs'
, listPredictorBacktestExportJobs_filters
- An array of filters. For each filter, provide a condition and a match
statement. The condition is either IS
or IS_NOT
, which specifies
whether to include or exclude the predictor backtest export jobs that
match the statement from the list. The match statement consists of a key
and a value.
Filter properties
Condition
- The condition to apply. Valid values areIS
andIS_NOT
. To include the predictor backtest export jobs that match the statement, specifyIS
. To exclude matching predictor backtest export jobs, specifyIS_NOT
.Key
- The name of the parameter to filter on. Valid values arePredictorArn
andStatus
.Value
- The value to match.
$sel:nextToken:ListPredictorBacktestExportJobs'
, listPredictorBacktestExportJobs_nextToken
- If the result of the previous request was truncated, the response
includes a NextToken. To retrieve the next set of results, use the token
in the next request. Tokens expire after 24 hours.
$sel:maxResults:ListPredictorBacktestExportJobs'
, listPredictorBacktestExportJobs_maxResults
- The number of items to return in the response.
Request Lenses
listPredictorBacktestExportJobs_filters :: Lens' ListPredictorBacktestExportJobs (Maybe [Filter]) Source #
An array of filters. For each filter, provide a condition and a match
statement. The condition is either IS
or IS_NOT
, which specifies
whether to include or exclude the predictor backtest export jobs that
match the statement from the list. The match statement consists of a key
and a value.
Filter properties
Condition
- The condition to apply. Valid values areIS
andIS_NOT
. To include the predictor backtest export jobs that match the statement, specifyIS
. To exclude matching predictor backtest export jobs, specifyIS_NOT
.Key
- The name of the parameter to filter on. Valid values arePredictorArn
andStatus
.Value
- The value to match.
listPredictorBacktestExportJobs_nextToken :: Lens' ListPredictorBacktestExportJobs (Maybe Text) Source #
If the result of the previous request was truncated, the response includes a NextToken. To retrieve the next set of results, use the token in the next request. Tokens expire after 24 hours.
listPredictorBacktestExportJobs_maxResults :: Lens' ListPredictorBacktestExportJobs (Maybe Natural) Source #
The number of items to return in the response.
Destructuring the Response
data ListPredictorBacktestExportJobsResponse Source #
See: newListPredictorBacktestExportJobsResponse
smart constructor.
ListPredictorBacktestExportJobsResponse' | |
|
Instances
newListPredictorBacktestExportJobsResponse Source #
Create a value of ListPredictorBacktestExportJobsResponse
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:ListPredictorBacktestExportJobs'
, listPredictorBacktestExportJobsResponse_nextToken
- Returns this token if the response is truncated. To retrieve the next
set of results, use the token in the next request.
$sel:predictorBacktestExportJobs:ListPredictorBacktestExportJobsResponse'
, listPredictorBacktestExportJobsResponse_predictorBacktestExportJobs
- An array of objects that summarize the properties of each predictor
backtest export job.
$sel:httpStatus:ListPredictorBacktestExportJobsResponse'
, listPredictorBacktestExportJobsResponse_httpStatus
- The response's http status code.
Response Lenses
listPredictorBacktestExportJobsResponse_nextToken :: Lens' ListPredictorBacktestExportJobsResponse (Maybe Text) Source #
Returns this token if the response is truncated. To retrieve the next set of results, use the token in the next request.
listPredictorBacktestExportJobsResponse_predictorBacktestExportJobs :: Lens' ListPredictorBacktestExportJobsResponse (Maybe [PredictorBacktestExportJobSummary]) Source #
An array of objects that summarize the properties of each predictor backtest export job.
listPredictorBacktestExportJobsResponse_httpStatus :: Lens' ListPredictorBacktestExportJobsResponse Int Source #
The response's http status code.