libZSservicesZSamazonka-forecastZSamazonka-forecast
Copyright(c) 2013-2021 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay+amazonka@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone

Amazonka.Forecast.ListPredictorBacktestExportJobs

Description

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

Creating a Request

data ListPredictorBacktestExportJobs Source #

See: newListPredictorBacktestExportJobs smart constructor.

Constructors

ListPredictorBacktestExportJobs' 

Fields

  • filters :: Maybe [Filter]

    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 are IS and IS_NOT. To include the predictor backtest export jobs that match the statement, specify IS. To exclude matching predictor backtest export jobs, specify IS_NOT.
    • Key - The name of the parameter to filter on. Valid values are PredictorArn and Status.
    • Value - The value to match.
  • nextToken :: Maybe Text

    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.

  • maxResults :: Maybe Natural

    The number of items to return in the response.

Instances

Instances details
Eq ListPredictorBacktestExportJobs Source # 
Instance details

Defined in Amazonka.Forecast.ListPredictorBacktestExportJobs

Read ListPredictorBacktestExportJobs Source # 
Instance details

Defined in Amazonka.Forecast.ListPredictorBacktestExportJobs

Show ListPredictorBacktestExportJobs Source # 
Instance details

Defined in Amazonka.Forecast.ListPredictorBacktestExportJobs

Generic ListPredictorBacktestExportJobs Source # 
Instance details

Defined in Amazonka.Forecast.ListPredictorBacktestExportJobs

Associated Types

type Rep ListPredictorBacktestExportJobs :: Type -> Type #

NFData ListPredictorBacktestExportJobs Source # 
Instance details

Defined in Amazonka.Forecast.ListPredictorBacktestExportJobs

Hashable ListPredictorBacktestExportJobs Source # 
Instance details

Defined in Amazonka.Forecast.ListPredictorBacktestExportJobs

ToJSON ListPredictorBacktestExportJobs Source # 
Instance details

Defined in Amazonka.Forecast.ListPredictorBacktestExportJobs

AWSPager ListPredictorBacktestExportJobs Source # 
Instance details

Defined in Amazonka.Forecast.ListPredictorBacktestExportJobs

AWSRequest ListPredictorBacktestExportJobs Source # 
Instance details

Defined in Amazonka.Forecast.ListPredictorBacktestExportJobs

ToHeaders ListPredictorBacktestExportJobs Source # 
Instance details

Defined in Amazonka.Forecast.ListPredictorBacktestExportJobs

ToPath ListPredictorBacktestExportJobs Source # 
Instance details

Defined in Amazonka.Forecast.ListPredictorBacktestExportJobs

ToQuery ListPredictorBacktestExportJobs Source # 
Instance details

Defined in Amazonka.Forecast.ListPredictorBacktestExportJobs

type Rep ListPredictorBacktestExportJobs Source # 
Instance details

Defined in Amazonka.Forecast.ListPredictorBacktestExportJobs

type Rep ListPredictorBacktestExportJobs = D1 ('MetaData "ListPredictorBacktestExportJobs" "Amazonka.Forecast.ListPredictorBacktestExportJobs" "libZSservicesZSamazonka-forecastZSamazonka-forecast" 'False) (C1 ('MetaCons "ListPredictorBacktestExportJobs'" 'PrefixI 'True) (S1 ('MetaSel ('Just "filters") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Filter])) :*: (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "maxResults") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)))))
type AWSResponse ListPredictorBacktestExportJobs Source # 
Instance details

Defined in Amazonka.Forecast.ListPredictorBacktestExportJobs

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 are IS and IS_NOT. To include the predictor backtest export jobs that match the statement, specify IS. To exclude matching predictor backtest export jobs, specify IS_NOT.
  • Key - The name of the parameter to filter on. Valid values are PredictorArn and Status.
  • 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 are IS and IS_NOT. To include the predictor backtest export jobs that match the statement, specify IS. To exclude matching predictor backtest export jobs, specify IS_NOT.
  • Key - The name of the parameter to filter on. Valid values are PredictorArn and Status.
  • 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.

Destructuring the Response

data ListPredictorBacktestExportJobsResponse Source #

Constructors

ListPredictorBacktestExportJobsResponse' 

Fields

Instances

Instances details
Eq ListPredictorBacktestExportJobsResponse Source # 
Instance details

Defined in Amazonka.Forecast.ListPredictorBacktestExportJobs

Read ListPredictorBacktestExportJobsResponse Source # 
Instance details

Defined in Amazonka.Forecast.ListPredictorBacktestExportJobs

Show ListPredictorBacktestExportJobsResponse Source # 
Instance details

Defined in Amazonka.Forecast.ListPredictorBacktestExportJobs

Generic ListPredictorBacktestExportJobsResponse Source # 
Instance details

Defined in Amazonka.Forecast.ListPredictorBacktestExportJobs

NFData ListPredictorBacktestExportJobsResponse Source # 
Instance details

Defined in Amazonka.Forecast.ListPredictorBacktestExportJobs

type Rep ListPredictorBacktestExportJobsResponse Source # 
Instance details

Defined in Amazonka.Forecast.ListPredictorBacktestExportJobs

type Rep ListPredictorBacktestExportJobsResponse = D1 ('MetaData "ListPredictorBacktestExportJobsResponse" "Amazonka.Forecast.ListPredictorBacktestExportJobs" "libZSservicesZSamazonka-forecastZSamazonka-forecast" 'False) (C1 ('MetaCons "ListPredictorBacktestExportJobsResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "nextToken") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "predictorBacktestExportJobs") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [PredictorBacktestExportJobSummary])) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int))))

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.