ForecastService

Table of Contents

Client

class ForecastService.Client

A low-level client representing Amazon Forecast Service:

import boto3

client = boto3.client('forecast')

These are the available methods:

can_paginate(operation_name)

Check if an operation can be paginated.

Parameters
operation_name (string) -- The operation name. This is the same name as the method name on the client. For example, if the method name is create_foo, and you'd normally invoke the operation as client.create_foo(**kwargs), if the create_foo operation can be paginated, you can use the call client.get_paginator("create_foo").
Returns
True if the operation can be paginated, False otherwise.
create_dataset(**kwargs)

Creates an Amazon Forecast dataset. The information about the dataset that you provide helps Forecast understand how to consume the data for model training. This includes the following:

  • *DataFrequency * - How frequently your historical time-series data is collected. Amazon Forecast uses this information when training the model and generating a forecast.
  • *Domain * and * DatasetType * - Each dataset has an associated dataset domain and a type within the domain. Amazon Forecast provides a list of predefined domains and types within each domain. For each unique dataset domain and type within the domain, Amazon Forecast requires your data to include a minimum set of predefined fields.
  • *Schema * - A schema specifies the fields of the dataset, including the field name and data type.

After creating a dataset, you import your training data into the dataset and add the dataset to a dataset group. You then use the dataset group to create a predictor. For more information, see howitworks-datasets-groups .

To get a list of all your datasets, use the ListDatasets operation.

Note

The Status of a dataset must be ACTIVE before you can import training data. Use the DescribeDataset operation to get the status.

See also: AWS API Documentation

Request Syntax

response = client.create_dataset(
    DatasetName='string',
    Domain='RETAIL'|'CUSTOM'|'INVENTORY_PLANNING'|'EC2_CAPACITY'|'WORK_FORCE'|'WEB_TRAFFIC'|'METRICS',
    DatasetType='TARGET_TIME_SERIES'|'RELATED_TIME_SERIES'|'ITEM_METADATA',
    DataFrequency='string',
    Schema={
        'Attributes': [
            {
                'AttributeName': 'string',
                'AttributeType': 'string'|'integer'|'float'|'timestamp'
            },
        ]
    },
    EncryptionConfig={
        'RoleArn': 'string',
        'KMSKeyArn': 'string'
    }
)
Parameters
  • DatasetName (string) --

    [REQUIRED]

    A name for the dataset.

  • Domain (string) --

    [REQUIRED]

    The domain associated with the dataset. The Domain and DatasetType that you choose determine the fields that must be present in the training data that you import to the dataset. For example, if you choose the RETAIL domain and TARGET_TIME_SERIES as the DatasetType , Amazon Forecast requires item_id , timestamp , and demand fields to be present in your data. For more information, see howitworks-datasets-groups .

  • DatasetType (string) --

    [REQUIRED]

    The dataset type. Valid values depend on the chosen Domain .

  • DataFrequency (string) --

    The frequency of data collection.

    Valid intervals are Y (Year), M (Month), W (Week), D (Day), H (Hour), 30min (30 minutes), 15min (15 minutes), 10min (10 minutes), 5min (5 minutes), and 1min (1 minute). For example, "D" indicates every day and "15min" indicates every 15 minutes.

  • Schema (dict) --

    [REQUIRED]

    The schema for the dataset. The schema attributes and their order must match the fields in your data. The dataset Domain and DatasetType that you choose determine the minimum required fields in your training data. For information about the required fields for a specific dataset domain and type, see howitworks-domains-ds-types .

    • Attributes (list) --

      An array of attributes specifying the name and type of each field in a dataset.

      • (dict) --

        An attribute of a schema, which defines a field of a dataset. A schema attribute is required for every field in a dataset. The Schema object contains an array of SchemaAttribute objects.

        • AttributeName (string) --

          The name of the dataset field.

        • AttributeType (string) --

          The data type of the field.

  • EncryptionConfig (dict) --

    An AWS Key Management Service (KMS) key and the AWS Identity and Access Management (IAM) role that Amazon Forecast can assume to access the key.

    • RoleArn (string) -- [REQUIRED]

      The ARN of the AWS Identity and Access Management (IAM) role that Amazon Forecast can assume to access the AWS KMS key.

      Cross-account pass role is not allowed. If you pass a role that doesn't belong to your account, an InvalidInputException is thrown.

    • KMSKeyArn (string) -- [REQUIRED]

      The Amazon Resource Name (ARN) of an AWS Key Management Service (KMS) key.

Return type

dict

Returns

Response Syntax

{
    'DatasetArn': 'string'
}

Response Structure

  • (dict) --

    • DatasetArn (string) --

      The Amazon Resource Name (ARN) of the dataset.

create_dataset_group(**kwargs)

Creates an Amazon Forecast dataset group, which holds a collection of related datasets. You can add datasets to the dataset group when you create the dataset group, or you can add datasets later with the UpdateDatasetGroup operation.

After creating a dataset group and adding datasets, you use the dataset group when you create a predictor. For more information, see howitworks-datasets-groups .

To get a list of all your datasets groups, use the ListDatasetGroups operation.

Note

The Status of a dataset group must be ACTIVE before you can create a predictor using the dataset group. Use the DescribeDatasetGroup operation to get the status.

See also: AWS API Documentation

Request Syntax

response = client.create_dataset_group(
    DatasetGroupName='string',
    Domain='RETAIL'|'CUSTOM'|'INVENTORY_PLANNING'|'EC2_CAPACITY'|'WORK_FORCE'|'WEB_TRAFFIC'|'METRICS',
    DatasetArns=[
        'string',
    ]
)
Parameters
  • DatasetGroupName (string) --

    [REQUIRED]

    A name for the dataset group.

  • Domain (string) --

    [REQUIRED]

    The domain associated with the dataset group. The Domain and DatasetType that you choose determine the fields that must be present in the training data that you import to the dataset. For example, if you choose the RETAIL domain and TARGET_TIME_SERIES as the DatasetType , Amazon Forecast requires item_id , timestamp , and demand fields to be present in your data. For more information, see howitworks-datasets-groups .

  • DatasetArns (list) --

    An array of Amazon Resource Names (ARNs) of the datasets that you want to include in the dataset group.

    • (string) --
Return type

dict

Returns

Response Syntax

{
    'DatasetGroupArn': 'string'
}

Response Structure

  • (dict) --

    • DatasetGroupArn (string) --

      The Amazon Resource Name (ARN) of the dataset group.

create_dataset_import_job(**kwargs)

Imports your training data to an Amazon Forecast dataset. You provide the location of your training data in an Amazon Simple Storage Service (Amazon S3) bucket and the Amazon Resource Name (ARN) of the dataset that you want to import the data to.

You must specify a DataSource object that includes an AWS Identity and Access Management (IAM) role that Amazon Forecast can assume to access the data. For more information, see aws-forecast-iam-roles .

Two properties of the training data are optionally specified:

  • The delimiter that separates the data fields. The default delimiter is a comma (,), which is the only supported delimiter in this release.
  • The format of timestamps. If the format is not specified, Amazon Forecast expects the format to be "yyyy-MM-dd HH:mm:ss".

When Amazon Forecast uploads your training data, it verifies that the data was collected at the DataFrequency specified when the target dataset was created. For more information, see CreateDataset and howitworks-datasets-groups . Amazon Forecast also verifies the delimiter and timestamp format.

You can use the ListDatasetImportJobs operation to get a list of all your dataset import jobs, filtered by specified criteria.

To get a list of all your dataset import jobs, filtered by the specified criteria, use the ListDatasetGroups operation.

See also: AWS API Documentation

Request Syntax

response = client.create_dataset_import_job(
    DatasetImportJobName='string',
    DatasetArn='string',
    DataSource={
        'S3Config': {
            'Path': 'string',
            'RoleArn': 'string',
            'KMSKeyArn': 'string'
        }
    },
    TimestampFormat='string'
)
Parameters
  • DatasetImportJobName (string) --

    [REQUIRED]

    The name for the dataset import job. It is recommended to include the current timestamp in the name to guard against getting a ResourceAlreadyExistsException exception, for example, 20190721DatasetImport .

  • DatasetArn (string) --

    [REQUIRED]

    The Amazon Resource Name (ARN) of the Amazon Forecast dataset that you want to import data to.

  • DataSource (dict) --

    [REQUIRED]

    The location of the training data to import and an AWS Identity and Access Management (IAM) role that Amazon Forecast can assume to access the data.

    • S3Config (dict) -- [REQUIRED]

      The path to the training data stored in an Amazon Simple Storage Service (Amazon S3) bucket along with the credentials to access the data.

      • Path (string) -- [REQUIRED]

        The path to an Amazon Simple Storage Service (Amazon S3) bucket or file(s) in an Amazon S3 bucket.

      • RoleArn (string) -- [REQUIRED]

        The ARN of the AWS Identity and Access Management (IAM) role that Amazon Forecast can assume to access the Amazon S3 bucket or file(s).

        Cross-account pass role is not allowed. If you pass a role that doesn't belong to your account, an InvalidInputException is thrown.

      • KMSKeyArn (string) --

        The Amazon Resource Name (ARN) of an AWS Key Management Service (KMS) key.

  • TimestampFormat (string) --

    The format of timestamps in the dataset. Two formats are supported, dependent on the DataFrequency specified when the dataset was created.

    • "yyyy-MM-dd" For data frequencies: Y, M, W, and D
    • "yyyy-MM-dd HH:mm:ss" For data frequencies: H, 30min, 15min, and 1min; and optionally, for: Y, M, W, and D
Return type

dict

Returns

Response Syntax

{
    'DatasetImportJobArn': 'string'
}

Response Structure

  • (dict) --

    • DatasetImportJobArn (string) --

      The Amazon Resource Name (ARN) of the dataset import job.

create_forecast(**kwargs)

Creates a forecast for each item in the TARGET_TIME_SERIES dataset that was used to train the predictor. This is known as inference. To retrieve the forecast for a single item at low latency, use the operation. To export the complete forecast into your Amazon Simple Storage Service (Amazon S3), use the CreateForecastExportJob operation.

The range of the forecast is determined by the ForecastHorizon , specified in the CreatePredictor request, multiplied by the DataFrequency , specified in the CreateDataset request. When you query a forecast, you can request a specific date range within the complete forecast.

To get a list of all your forecasts, use the ListForecasts operation.

Note

The forecasts generated by Amazon Forecast are in the same timezone as the dataset that was used to create the predictor.

For more information, see howitworks-forecast .

Note

The Status of the forecast must be ACTIVE before you can query or export the forecast. Use the DescribeForecast operation to get the status.

See also: AWS API Documentation

Request Syntax

response = client.create_forecast(
    ForecastName='string',
    PredictorArn='string'
)
Parameters
  • ForecastName (string) --

    [REQUIRED]

    The name for the forecast.

  • PredictorArn (string) --

    [REQUIRED]

    The Amazon Resource Name (ARN) of the predictor to use to generate the forecast.

Return type

dict

Returns

Response Syntax

{
    'ForecastArn': 'string'
}

Response Structure

  • (dict) --

    • ForecastArn (string) --

      The Amazon Resource Name (ARN) of the forecast.

create_forecast_export_job(**kwargs)

Exports a forecast created by the CreateForecast operation to your Amazon Simple Storage Service (Amazon S3) bucket.

You must specify a DataDestination object that includes an AWS Identity and Access Management (IAM) role that Amazon Forecast can assume to access the Amazon S3 bucket. For more information, see aws-forecast-iam-roles .

For more information, see howitworks-forecast .

To get a list of all your forecast export jobs, use the ListForecastExportJobs operation.

Note

The Status of the forecast export job must be ACTIVE before you can access the forecast in your Amazon S3 bucket. Use the DescribeForecastExportJob operation to get the status.

See also: AWS API Documentation

Request Syntax

response = client.create_forecast_export_job(
    ForecastExportJobName='string',
    ForecastArn='string',
    Destination={
        'S3Config': {
            'Path': 'string',
            'RoleArn': 'string',
            'KMSKeyArn': 'string'
        }
    }
)
Parameters
  • ForecastExportJobName (string) --

    [REQUIRED]

    The name for the forecast export job.

  • ForecastArn (string) --

    [REQUIRED]

    The Amazon Resource Name (ARN) of the forecast that you want to export.

  • Destination (dict) --

    [REQUIRED]

    The path to the Amazon S3 bucket where you want to save the forecast and an AWS Identity and Access Management (IAM) role that Amazon Forecast can assume to access the bucket.

    • S3Config (dict) -- [REQUIRED]

      The path to an Amazon Simple Storage Service (Amazon S3) bucket along with the credentials to access the bucket.

      • Path (string) -- [REQUIRED]

        The path to an Amazon Simple Storage Service (Amazon S3) bucket or file(s) in an Amazon S3 bucket.

      • RoleArn (string) -- [REQUIRED]

        The ARN of the AWS Identity and Access Management (IAM) role that Amazon Forecast can assume to access the Amazon S3 bucket or file(s).

        Cross-account pass role is not allowed. If you pass a role that doesn't belong to your account, an InvalidInputException is thrown.

      • KMSKeyArn (string) --

        The Amazon Resource Name (ARN) of an AWS Key Management Service (KMS) key.

Return type

dict

Returns

Response Syntax

{
    'ForecastExportJobArn': 'string'
}

Response Structure

  • (dict) --

    • ForecastExportJobArn (string) --

      The Amazon Resource Name (ARN) of the export job.

create_predictor(**kwargs)

Creates an Amazon Forecast predictor.

In the request, you provide a dataset group and either specify an algorithm or let Amazon Forecast choose the algorithm for you using AutoML. If you specify an algorithm, you also can override algorithm-specific hyperparameters.

Amazon Forecast uses the chosen algorithm to train a model using the latest version of the datasets in the specified dataset group. The result is called a predictor. You then generate a forecast using the CreateForecast operation.

After training a model, the CreatePredictor operation also evaluates it. To see the evaluation metrics, use the GetAccuracyMetrics operation. Always review the evaluation metrics before deciding to use the predictor to generate a forecast.

Optionally, you can specify a featurization configuration to fill and aggragate the data fields in the TARGET_TIME_SERIES dataset to improve model training. For more information, see FeaturizationConfig .

AutoML

If you set PerformAutoML to true , Amazon Forecast evaluates each algorithm and chooses the one that minimizes the objective function . The objective function is defined as the mean of the weighted p10, p50, and p90 quantile losses. For more information, see EvaluationResult .

When AutoML is enabled, the following properties are disallowed:

  • AlgorithmArn
  • HPOConfig
  • PerformHPO
  • TrainingParameters

To get a list of all your predictors, use the ListPredictors operation.

Note

The Status of the predictor must be ACTIVE , signifying that training has completed, before you can use the predictor to create a forecast. Use the DescribePredictor operation to get the status.

See also: AWS API Documentation

Request Syntax

response = client.create_predictor(
    PredictorName='string',
    AlgorithmArn='string',
    ForecastHorizon=123,
    PerformAutoML=True|False,
    PerformHPO=True|False,
    TrainingParameters={
        'string': 'string'
    },
    EvaluationParameters={
        'NumberOfBacktestWindows': 123,
        'BackTestWindowOffset': 123
    },
    HPOConfig={
        'ParameterRanges': {
            'CategoricalParameterRanges': [
                {
                    'Name': 'string',
                    'Values': [
                        'string',
                    ]
                },
            ],
            'ContinuousParameterRanges': [
                {
                    'Name': 'string',
                    'MaxValue': 123.0,
                    'MinValue': 123.0,
                    'ScalingType': 'Auto'|'Linear'|'Logarithmic'|'ReverseLogarithmic'
                },
            ],
            'IntegerParameterRanges': [
                {
                    'Name': 'string',
                    'MaxValue': 123,
                    'MinValue': 123,
                    'ScalingType': 'Auto'|'Linear'|'Logarithmic'|'ReverseLogarithmic'
                },
            ]
        }
    },
    InputDataConfig={
        'DatasetGroupArn': 'string',
        'SupplementaryFeatures': [
            {
                'Name': 'string',
                'Value': 'string'
            },
        ]
    },
    FeaturizationConfig={
        'ForecastFrequency': 'string',
        'ForecastDimensions': [
            'string',
        ],
        'Featurizations': [
            {
                'AttributeName': 'string',
                'FeaturizationPipeline': [
                    {
                        'FeaturizationMethodName': 'filling',
                        'FeaturizationMethodParameters': {
                            'string': 'string'
                        }
                    },
                ]
            },
        ]
    },
    EncryptionConfig={
        'RoleArn': 'string',
        'KMSKeyArn': 'string'
    }
)
Parameters
  • PredictorName (string) --

    [REQUIRED]

    A name for the predictor.

  • AlgorithmArn (string) --

    The Amazon Resource Name (ARN) of the algorithm to use for model training. Required if PerformAutoML is not set to true .

    Supported algorithms
    • arn:aws:forecast:::algorithm/ARIMA
    • arn:aws:forecast:::algorithm/Deep_AR_Plus - supports hyperparameter optimization (HPO)
    • arn:aws:forecast:::algorithm/ETS
    • arn:aws:forecast:::algorithm/NPTS
    • arn:aws:forecast:::algorithm/Prophet
  • ForecastHorizon (integer) --

    [REQUIRED]

    Specifies the number of time-steps that the model is trained to predict. The forecast horizon is also called the prediction length.

    For example, if you configure a dataset for daily data collection (using the DataFrequency parameter of the CreateDataset operation) and set the forecast horizon to 10, the model returns predictions for 10 days.

  • PerformAutoML (boolean) --

    Whether to perform AutoML. The default value is false . In this case, you are required to specify an algorithm.

    If you want Amazon Forecast to evaluate the algorithms it provides and choose the best algorithm and configuration for your training dataset, set PerformAutoML to true . This is a good option if you aren't sure which algorithm is suitable for your application.

  • PerformHPO (boolean) --

    Whether to perform hyperparameter optimization (HPO). HPO finds optimal hyperparameter values for your training data. The process of performing HPO is known as a hyperparameter tuning job.

    The default value is false . In this case, Amazon Forecast uses default hyperparameter values from the chosen algorithm.

    To override the default values, set PerformHPO to true and supply the HyperParameterTuningJobConfig object. The tuning job specifies an objective metric, the hyperparameters to optimize, and the valid range for each hyperparameter.

    The following algorithms support HPO:

    • DeepAR+
  • TrainingParameters (dict) --

    The training parameters to override for model training. The parameters that you can override are listed in the individual algorithms in aws-forecast-choosing-recipes .

    • (string) --
      • (string) --
  • EvaluationParameters (dict) --

    Used to override the default evaluation parameters of the specified algorithm. Amazon Forecast evaluates a predictor by splitting a dataset into training data and testing data. The evaluation parameters define how to perform the split and the number of iterations.

    • NumberOfBacktestWindows (integer) --

      The number of times to split the input data. The default is 1. The range is 1 through 5.

    • BackTestWindowOffset (integer) --

      The point from the end of the dataset where you want to split the data for model training and evaluation. The value is specified as the number of data points.

  • HPOConfig (dict) --

    Provides hyperparameter override values for the algorithm. If you don't provide this parameter, Amazon Forecast uses default values. The individual algorithms specify which hyperparameters support hyperparameter optimization (HPO). For more information, see aws-forecast-choosing-recipes .

    • ParameterRanges (dict) --

      Specifies the ranges of valid values for the hyperparameters.

      • CategoricalParameterRanges (list) --

        Specifies the tunable range for each categorical hyperparameter.

        • (dict) --

          Specifies a categorical hyperparameter and it's range of tunable values. This object is part of the ParameterRanges object.

          • Name (string) -- [REQUIRED]

            The name of the categorical hyperparameter to tune.

          • Values (list) -- [REQUIRED]

            A list of the tunable categories for the hyperparameter.

            • (string) --
      • ContinuousParameterRanges (list) --

        Specifies the tunable range for each continuous hyperparameter.

        • (dict) --

          Specifies a continuous hyperparameter and it's range of tunable values. This object is part of the ParameterRanges object.

          • Name (string) -- [REQUIRED]

            The name of the hyperparameter to tune.

          • MaxValue (float) -- [REQUIRED]

            The maximum tunable value of the hyperparameter.

          • MinValue (float) -- [REQUIRED]

            The minimum tunable value of the hyperparameter.

          • ScalingType (string) --

            The scale that hyperparameter tuning uses to search the hyperparameter range. For information about choosing a hyperparameter scale, see Hyperparameter Scaling . One of the following values:

            Auto

            Amazon Forecast hyperparameter tuning chooses the best scale for the hyperparameter.

            Linear

            Hyperparameter tuning searches the values in the hyperparameter range by using a linear scale.

            Logarithmic

            Hyperparameter tuning searches the values in the hyperparameter range by using a logarithmic scale.

            Logarithmic scaling works only for ranges that have only values greater than 0.

            ReverseLogarithmic

            Hyperparemeter tuning searches the values in the hyperparameter range by using a reverse logarithmic scale.

            Reverse logarithmic scaling works only for ranges that are entirely within the range 0 <= x < 1.0.

      • IntegerParameterRanges (list) --

        Specifies the tunable range for each integer hyperparameter.

        • (dict) --

          Specifies an integer hyperparameter and it's range of tunable values. This object is part of the ParameterRanges object.

          • Name (string) -- [REQUIRED]

            The name of the hyperparameter to tune.

          • MaxValue (integer) -- [REQUIRED]

            The maximum tunable value of the hyperparameter.

          • MinValue (integer) -- [REQUIRED]

            The minimum tunable value of the hyperparameter.

          • ScalingType (string) --

            The scale that hyperparameter tuning uses to search the hyperparameter range. For information about choosing a hyperparameter scale, see Hyperparameter Scaling . One of the following values:

            Auto

            Amazon Forecast hyperparameter tuning chooses the best scale for the hyperparameter.

            Linear

            Hyperparameter tuning searches the values in the hyperparameter range by using a linear scale.

            Logarithmic

            Hyperparameter tuning searches the values in the hyperparameter range by using a logarithmic scale.

            Logarithmic scaling works only for ranges that have only values greater than 0.

            ReverseLogarithmic

            Not supported for IntegerParameterRange .

            Reverse logarithmic scaling works only for ranges that are entirely within the range 0 <= x < 1.0.

  • InputDataConfig (dict) --

    [REQUIRED]

    Describes the dataset group that contains the data to use to train the predictor.

    • DatasetGroupArn (string) -- [REQUIRED]

      The Amazon Resource Name (ARN) of the dataset group.

    • SupplementaryFeatures (list) --

      An array of supplementary features. For this release, the only supported feature is a holiday calendar.

      • (dict) --

        Describes a supplementary feature of a dataset group. This object is part of the InputDataConfig object.

        For this release, the only supported feature is a holiday calendar. If the calendar is used, all data should belong to the same country as the calendar. For the calendar data, see http://jollyday.sourceforge.net/data.html .

        • Name (string) -- [REQUIRED]

          The name of the feature. This must be "holiday".

        • Value (string) -- [REQUIRED]

          One of the following 2 letter country codes:

          • "AU" - AUSTRALIA
          • "DE" - GERMANY
          • "JP" - JAPAN
          • "US" - UNITED_STATES
          • "UK" - UNITED_KINGDOM
  • FeaturizationConfig (dict) --

    [REQUIRED]

    The featurization configuration.

    • ForecastFrequency (string) -- [REQUIRED]

      The frequency of predictions in a forecast.

      Valid intervals are Y (Year), M (Month), W (Week), D (Day), H (Hour), 30min (30 minutes), 15min (15 minutes), 10min (10 minutes), 5min (5 minutes), and 1min (1 minute). For example, "Y" indicates every year and "5min" indicates every five minutes.

    • ForecastDimensions (list) --

      An array of dimension (field) names that specify how to group the generated forecast.

      For example, suppose that you are generating a forecast for item sales across all of your stores, and your dataset contains a store_id field. If you want the sales forecast for each item by store, you would specify store_id as the dimension.

      • (string) --
    • Featurizations (list) --

      An array of featurization (transformation) information for the fields of a dataset. In this release, only a single featurization is supported.

      • (dict) --

        Provides featurization (transformation) information for a dataset field. This object is part of the FeaturizationConfig object.

        For example:

        {

        "AttributeName": "demand",

        FeaturizationPipeline [ {

        "FeaturizationMethodName": "filling",

        "FeaturizationMethodParameters": {"aggregation": "avg", "backfill": "nan"}

        } ]

        }

        • AttributeName (string) -- [REQUIRED]

          The name of the schema attribute specifying the data field to be featurized. In this release, only the target field of the TARGET_TIME_SERIES dataset type is supported. For example, for the RETAIL domain, the target is demand , and for the CUSTOM domain, the target is target_value .

        • FeaturizationPipeline (list) --

          An array FeaturizationMethod objects that specifies the feature transformation methods. For this release, the number of methods is limited to one.

          • (dict) --

            Provides information about a method that featurizes (transforms) a dataset field. The method is part of the FeaturizationPipeline of the Featurization object. If FeaturizationMethodParameters isn't specified, Amazon Forecast uses default parameters.

            For example:

            {

            "FeaturizationMethodName": "filling",

            "FeaturizationMethodParameters": {"aggregation": "avg", "backfill": "nan"}

            }

            • FeaturizationMethodName (string) -- [REQUIRED]

              The name of the method. In this release, "filling" is the only supported method.

            • FeaturizationMethodParameters (dict) --

              The method parameters (key-value pairs). Specify these to override the default values. The following list shows the parameters and their valid values. Bold signifies the default value.

              • aggregation : sum , avg , first , min , max
              • frontfill : none
              • middlefill : zero , nan (not a number)
              • backfill : zero , nan
              • (string) --
                • (string) --
  • EncryptionConfig (dict) --

    An AWS Key Management Service (KMS) key and the AWS Identity and Access Management (IAM) role that Amazon Forecast can assume to access the key.

    • RoleArn (string) -- [REQUIRED]

      The ARN of the AWS Identity and Access Management (IAM) role that Amazon Forecast can assume to access the AWS KMS key.

      Cross-account pass role is not allowed. If you pass a role that doesn't belong to your account, an InvalidInputException is thrown.

    • KMSKeyArn (string) -- [REQUIRED]

      The Amazon Resource Name (ARN) of an AWS Key Management Service (KMS) key.

Return type

dict

Returns

Response Syntax

{
    'PredictorArn': 'string'
}

Response Structure

  • (dict) --

    • PredictorArn (string) --

      The Amazon Resource Name (ARN) of the predictor.

delete_dataset(**kwargs)

Deletes an Amazon Forecast dataset created using the CreateDataset operation. To be deleted, the dataset must have a status of ACTIVE or CREATE_FAILED . Use the DescribeDataset operation to get the status.

See also: AWS API Documentation

Request Syntax

response = client.delete_dataset(
    DatasetArn='string'
)
Parameters
DatasetArn (string) --

[REQUIRED]

The Amazon Resource Name (ARN) of the dataset to delete.

Returns
None
delete_dataset_group(**kwargs)

Deletes a dataset group created using the CreateDatasetGroup operation. To be deleted, the dataset group must have a status of ACTIVE , CREATE_FAILED , or UPDATE_FAILED . Use the DescribeDatasetGroup operation to get the status.

The operation deletes only the dataset group, not the datasets in the group.

See also: AWS API Documentation

Request Syntax

response = client.delete_dataset_group(
    DatasetGroupArn='string'
)
Parameters
DatasetGroupArn (string) --

[REQUIRED]

The Amazon Resource Name (ARN) of the dataset group to delete.

Returns
None
delete_dataset_import_job(**kwargs)

Deletes a dataset import job created using the CreateDatasetImportJob operation. To be deleted, the import job must have a status of ACTIVE or CREATE_FAILED . Use the DescribeDatasetImportJob operation to get the status.

See also: AWS API Documentation

Request Syntax

response = client.delete_dataset_import_job(
    DatasetImportJobArn='string'
)
Parameters
DatasetImportJobArn (string) --

[REQUIRED]

The Amazon Resource Name (ARN) of the dataset import job to delete.

Returns
None
delete_forecast(**kwargs)

Deletes a forecast created using the CreateForecast operation. To be deleted, the forecast must have a status of ACTIVE or CREATE_FAILED . Use the DescribeForecast operation to get the status.

You can't delete a forecast while it is being exported.

See also: AWS API Documentation

Request Syntax

response = client.delete_forecast(
    ForecastArn='string'
)
Parameters
ForecastArn (string) --

[REQUIRED]

The Amazon Resource Name (ARN) of the forecast to delete.

Returns
None
delete_forecast_export_job(**kwargs)

Deletes a forecast export job created using the CreateForecastExportJob operation. To be deleted, the export job must have a status of ACTIVE or CREATE_FAILED . Use the DescribeForecastExportJob operation to get the status.

See also: AWS API Documentation

Request Syntax

response = client.delete_forecast_export_job(
    ForecastExportJobArn='string'
)
Parameters
ForecastExportJobArn (string) --

[REQUIRED]

The Amazon Resource Name (ARN) of the forecast export job to delete.

Returns
None
delete_predictor(**kwargs)

Deletes a predictor created using the CreatePredictor operation. To be deleted, the predictor must have a status of ACTIVE or CREATE_FAILED . Use the DescribePredictor operation to get the status.

Any forecasts generated by the predictor will no longer be available.

See also: AWS API Documentation

Request Syntax

response = client.delete_predictor(
    PredictorArn='string'
)
Parameters
PredictorArn (string) --

[REQUIRED]

The Amazon Resource Name (ARN) of the predictor to delete.

Returns
None
describe_dataset(**kwargs)

Describes an Amazon Forecast dataset created using the CreateDataset operation.

In addition to listing the properties provided by the user in the CreateDataset request, this operation includes the following properties:

  • CreationTime
  • LastModificationTime
  • Status

See also: AWS API Documentation

Request Syntax

response = client.describe_dataset(
    DatasetArn='string'
)
Parameters
DatasetArn (string) --

[REQUIRED]

The Amazon Resource Name (ARN) of the dataset.

Return type
dict
Returns
Response Syntax
{
    'DatasetArn': 'string',
    'DatasetName': 'string',
    'Domain': 'RETAIL'|'CUSTOM'|'INVENTORY_PLANNING'|'EC2_CAPACITY'|'WORK_FORCE'|'WEB_TRAFFIC'|'METRICS',
    'DatasetType': 'TARGET_TIME_SERIES'|'RELATED_TIME_SERIES'|'ITEM_METADATA',
    'DataFrequency': 'string',
    'Schema': {
        'Attributes': [
            {
                'AttributeName': 'string',
                'AttributeType': 'string'|'integer'|'float'|'timestamp'
            },
        ]
    },
    'EncryptionConfig': {
        'RoleArn': 'string',
        'KMSKeyArn': 'string'
    },
    'Status': 'string',
    'CreationTime': datetime(2015, 1, 1),
    'LastModificationTime': datetime(2015, 1, 1)
}

Response Structure

  • (dict) --
    • DatasetArn (string) --

      The Amazon Resource Name (ARN) of the dataset.

    • DatasetName (string) --

      The name of the dataset.

    • Domain (string) --

      The dataset domain.

    • DatasetType (string) --

      The dataset type.

    • DataFrequency (string) --

      The frequency of data collection.

      Valid intervals are Y (Year), M (Month), W (Week), D (Day), H (Hour), 30min (30 minutes), 15min (15 minutes), 10min (10 minutes), 5min (5 minutes), and 1min (1 minute). For example, "M" indicates every month and "30min" indicates every 30 minutes.

    • Schema (dict) --

      An array of SchemaAttribute objects that specify the dataset fields. Each SchemaAttribute specifies the name and data type of a field.

      • Attributes (list) --

        An array of attributes specifying the name and type of each field in a dataset.

        • (dict) --

          An attribute of a schema, which defines a field of a dataset. A schema attribute is required for every field in a dataset. The Schema object contains an array of SchemaAttribute objects.

          • AttributeName (string) --

            The name of the dataset field.

          • AttributeType (string) --

            The data type of the field.

    • EncryptionConfig (dict) --

      An AWS Key Management Service (KMS) key and the AWS Identity and Access Management (IAM) role that Amazon Forecast can assume to access the key.

      • RoleArn (string) --

        The ARN of the AWS Identity and Access Management (IAM) role that Amazon Forecast can assume to access the AWS KMS key.

        Cross-account pass role is not allowed. If you pass a role that doesn't belong to your account, an InvalidInputException is thrown.

      • KMSKeyArn (string) --

        The Amazon Resource Name (ARN) of an AWS Key Management Service (KMS) key.

    • Status (string) --

      The status of the dataset. States include:

      • ACTIVE
      • CREATE_PENDING , CREATE_IN_PROGRESS , CREATE_FAILED
      • DELETE_PENDING , DELETE_IN_PROGRESS , DELETE_FAILED
      • UPDATE_PENDING , UPDATE_IN_PROGRESS , UPDATE_FAILED

      The UPDATE states apply while data is imported to the dataset from a call to the CreateDatasetImportJob operation. During this time, the status reflects the status of the dataset import job. For example, when the import job status is CREATE_IN_PROGRESS , the status of the dataset is UPDATE_IN_PROGRESS .

      Note

      The Status of the dataset must be ACTIVE before you can import training data.

    • CreationTime (datetime) --

      When the dataset was created.

    • LastModificationTime (datetime) --

      When the dataset is created, LastModificationTime is the same as CreationTime . After a CreateDatasetImportJob operation is called, LastModificationTime is when the import job finished or failed. While data is being imported to the dataset, LastModificationTime is the current query time.

describe_dataset_group(**kwargs)

Describes a dataset group created using the CreateDatasetGroup operation.

In addition to listing the properties provided by the user in the CreateDatasetGroup request, this operation includes the following properties:

  • DatasetArns - The datasets belonging to the group.
  • CreationTime
  • LastModificationTime
  • Status

See also: AWS API Documentation

Request Syntax

response = client.describe_dataset_group(
    DatasetGroupArn='string'
)
Parameters
DatasetGroupArn (string) --

[REQUIRED]

The Amazon Resource Name (ARN) of the dataset group.

Return type
dict
Returns
Response Syntax
{
    'DatasetGroupName': 'string',
    'DatasetGroupArn': 'string',
    'DatasetArns': [
        'string',
    ],
    'Domain': 'RETAIL'|'CUSTOM'|'INVENTORY_PLANNING'|'EC2_CAPACITY'|'WORK_FORCE'|'WEB_TRAFFIC'|'METRICS',
    'Status': 'string',
    'CreationTime': datetime(2015, 1, 1),
    'LastModificationTime': datetime(2015, 1, 1)
}

Response Structure

  • (dict) --
    • DatasetGroupName (string) --

      The name of the dataset group.

    • DatasetGroupArn (string) --

      The ARN of the dataset group.

    • DatasetArns (list) --

      An array of Amazon Resource Names (ARNs) of the datasets contained in the dataset group.

      • (string) --
    • Domain (string) --

      The domain associated with the dataset group. The Domain and DatasetType that you choose determine the fields that must be present in the training data that you import to the dataset. For example, if you choose the RETAIL domain and TARGET_TIME_SERIES as the DatasetType , Amazon Forecast requires item_id , timestamp , and demand fields to be present in your data. For more information, see howitworks-datasets-groups .

    • Status (string) --

      The status of the dataset group. States include:

      • ACTIVE
      • CREATE_PENDING , CREATE_IN_PROGRESS , CREATE_FAILED
      • DELETE_PENDING , DELETE_IN_PROGRESS , DELETE_FAILED
      • UPDATE_PENDING , UPDATE_IN_PROGRESS , UPDATE_FAILED

      The UPDATE states apply when the UpdateDatasetGroup operation is called.

      Note

      The Status of the dataset group must be ACTIVE before creating a predictor using the dataset group.

    • CreationTime (datetime) --

      When the dataset group was created.

    • LastModificationTime (datetime) --

      When the dataset group was created or last updated from a call to the UpdateDatasetGroup operation. While the dataset group is being updated, LastModificationTime is the current query time.

describe_dataset_import_job(**kwargs)

Describes a dataset import job created using the CreateDatasetImportJob operation.

In addition to listing the properties provided by the user in the CreateDatasetImportJob request, this operation includes the following properties:

  • CreationTime
  • LastModificationTime
  • DataSize
  • FieldStatistics
  • Status
  • Message - If an error occurred, information about the error.

See also: AWS API Documentation

Request Syntax

response = client.describe_dataset_import_job(
    DatasetImportJobArn='string'
)
Parameters
DatasetImportJobArn (string) --

[REQUIRED]

The Amazon Resource Name (ARN) of the dataset import job.

Return type
dict
Returns
Response Syntax
{
    'DatasetImportJobName': 'string',
    'DatasetImportJobArn': 'string',
    'DatasetArn': 'string',
    'TimestampFormat': 'string',
    'DataSource': {
        'S3Config': {
            'Path': 'string',
            'RoleArn': 'string',
            'KMSKeyArn': 'string'
        }
    },
    'FieldStatistics': {
        'string': {
            'Count': 123,
            'CountDistinct': 123,
            'CountNull': 123,
            'CountNan': 123,
            'Min': 'string',
            'Max': 'string',
            'Avg': 123.0,
            'Stddev': 123.0
        }
    },
    'DataSize': 123.0,
    'Status': 'string',
    'Message': 'string',
    'CreationTime': datetime(2015, 1, 1),
    'LastModificationTime': datetime(2015, 1, 1)
}

Response Structure

  • (dict) --
    • DatasetImportJobName (string) --

      The name of the dataset import job.

    • DatasetImportJobArn (string) --

      The ARN of the dataset import job.

    • DatasetArn (string) --

      The Amazon Resource Name (ARN) of the dataset that the training data was imported to.

    • TimestampFormat (string) --

      The format of timestamps in the dataset. Two formats are supported dependent on the DataFrequency specified when the dataset was created.

      • "yyyy-MM-dd" For data frequencies: Y, M, W, and D
      • "yyyy-MM-dd HH:mm:ss" For data frequencies: H, 30min, 15min, and 1min; and optionally, for: Y, M, W, and D
    • DataSource (dict) --

      The location of the training data to import. The training data must be stored in an Amazon S3 bucket.

      • S3Config (dict) --

        The path to the training data stored in an Amazon Simple Storage Service (Amazon S3) bucket along with the credentials to access the data.

        • Path (string) --

          The path to an Amazon Simple Storage Service (Amazon S3) bucket or file(s) in an Amazon S3 bucket.

        • RoleArn (string) --

          The ARN of the AWS Identity and Access Management (IAM) role that Amazon Forecast can assume to access the Amazon S3 bucket or file(s).

          Cross-account pass role is not allowed. If you pass a role that doesn't belong to your account, an InvalidInputException is thrown.

        • KMSKeyArn (string) --

          The Amazon Resource Name (ARN) of an AWS Key Management Service (KMS) key.

    • FieldStatistics (dict) --

      Statistical information about each field in the input data.

      • (string) --
        • (dict) --

          Provides statistics for each data field imported to an Amazon Forecast dataset with the CreateDatasetImportJob operation.

          • Count (integer) --

            The number of values in the field.

          • CountDistinct (integer) --

            The number of distinct values in the field.

          • CountNull (integer) --

            The number of null values in the field.

          • CountNan (integer) --

            The number of NAN (not a number) values in the field.

          • Min (string) --

            For a numeric field, the minimum value in the field.

          • Max (string) --

            For a numeric field, the maximum value in the field.

          • Avg (float) --

            For a numeric field, the average value in the field.

          • Stddev (float) --

            For a numeric field, the standard deviation.

    • DataSize (float) --

      The size of the dataset in gigabytes (GB) after completion of the import job.

    • Status (string) --

      The status of the dataset import job. The status is reflected in the status of the dataset. For example, when the import job status is CREATE_IN_PROGRESS , the status of the dataset is UPDATE_IN_PROGRESS . States include:

      • ACTIVE
      • CREATE_PENDING , CREATE_IN_PROGRESS , CREATE_FAILED
      • DELETE_PENDING , DELETE_IN_PROGRESS , DELETE_FAILED
    • Message (string) --

      If an error occurred, an informational message about the error.

    • CreationTime (datetime) --

      When the dataset import job was created.

    • LastModificationTime (datetime) --

      Dependent on the status as follows:

      • CREATE_PENDING - same as CreationTime
      • CREATE_IN_PROGRESS - the current timestamp
      • ACTIVE or CREATE_FAILED - when the job finished or failed
describe_forecast(**kwargs)

Describes a forecast created using the CreateForecast operation.

In addition to listing the properties provided by the user in the CreateForecast request, this operation includes the following properties:

  • DatasetGroupArn - The dataset group that provided the training data.
  • CreationTime
  • LastModificationTime
  • Status
  • Message - If an error occurred, information about the error.

See also: AWS API Documentation

Request Syntax

response = client.describe_forecast(
    ForecastArn='string'
)
Parameters
ForecastArn (string) --

[REQUIRED]

The Amazon Resource Name (ARN) of the forecast.

Return type
dict
Returns
Response Syntax
{
    'ForecastArn': 'string',
    'ForecastName': 'string',
    'PredictorArn': 'string',
    'DatasetGroupArn': 'string',
    'Status': 'string',
    'Message': 'string',
    'CreationTime': datetime(2015, 1, 1),
    'LastModificationTime': datetime(2015, 1, 1)
}

Response Structure

  • (dict) --
    • ForecastArn (string) --

      The same forecast ARN as given in the request.

    • ForecastName (string) --

      The name of the forecast.

    • PredictorArn (string) --

      The ARN of the predictor used to generate the forecast.

    • DatasetGroupArn (string) --

      The ARN of the dataset group that provided the data used to train the predictor.

    • Status (string) --

      The status of the forecast. States include:

      • ACTIVE
      • CREATE_PENDING , CREATE_IN_PROGRESS , CREATE_FAILED
      • DELETE_PENDING , DELETE_IN_PROGRESS , DELETE_FAILED

      Note

      The Status of the forecast must be ACTIVE before you can query or export the forecast.

    • Message (string) --

      If an error occurred, an informational message about the error.

    • CreationTime (datetime) --

      When the forecast creation task was created.

    • LastModificationTime (datetime) --

      Initially, the same as CreationTime (status is CREATE_PENDING ). Updated when inference (creating the forecast) starts (status changed to CREATE_IN_PROGRESS ), and when inference is complete (status changed to ACTIVE ) or fails (status changed to CREATE_FAILED ).

describe_forecast_export_job(**kwargs)

Describes a forecast export job created using the CreateForecastExportJob operation.

In addition to listing the properties provided by the user in the CreateForecastExportJob request, this operation includes the following properties:

  • CreationTime
  • LastModificationTime
  • Status
  • Message - If an error occurred, information about the error.

See also: AWS API Documentation

Request Syntax

response = client.describe_forecast_export_job(
    ForecastExportJobArn='string'
)
Parameters
ForecastExportJobArn (string) --

[REQUIRED]

The Amazon Resource Name (ARN) of the forecast export job.

Return type
dict
Returns
Response Syntax
{
    'ForecastExportJobArn': 'string',
    'ForecastExportJobName': 'string',
    'ForecastArn': 'string',
    'Destination': {
        'S3Config': {
            'Path': 'string',
            'RoleArn': 'string',
            'KMSKeyArn': 'string'
        }
    },
    'Message': 'string',
    'Status': 'string',
    'CreationTime': datetime(2015, 1, 1),
    'LastModificationTime': datetime(2015, 1, 1)
}

Response Structure

  • (dict) --
    • ForecastExportJobArn (string) --

      The ARN of the forecast export job.

    • ForecastExportJobName (string) --

      The name of the forecast export job.

    • ForecastArn (string) --

      The Amazon Resource Name (ARN) of the exported forecast.

    • Destination (dict) --

      The path to the AWS S3 bucket where the forecast is exported.

      • S3Config (dict) --

        The path to an Amazon Simple Storage Service (Amazon S3) bucket along with the credentials to access the bucket.

        • Path (string) --

          The path to an Amazon Simple Storage Service (Amazon S3) bucket or file(s) in an Amazon S3 bucket.

        • RoleArn (string) --

          The ARN of the AWS Identity and Access Management (IAM) role that Amazon Forecast can assume to access the Amazon S3 bucket or file(s).

          Cross-account pass role is not allowed. If you pass a role that doesn't belong to your account, an InvalidInputException is thrown.

        • KMSKeyArn (string) --

          The Amazon Resource Name (ARN) of an AWS Key Management Service (KMS) key.

    • Message (string) --

      If an error occurred, an informational message about the error.

    • Status (string) --

      The status of the forecast export job. One of the following states:

      • ACTIVE
      • CREATE_PENDING , CREATE_IN_PROGRESS , CREATE_FAILED
      • DELETE_PENDING , DELETE_IN_PROGRESS , DELETE_FAILED

      Note

      The Status of the forecast export job must be ACTIVE before you can access the forecast in your Amazon S3 bucket.

    • CreationTime (datetime) --

      When the forecast export job was created.

    • LastModificationTime (datetime) --

      When the last successful export job finished.

describe_predictor(**kwargs)

Describes a predictor created using the CreatePredictor operation.

In addition to listing the properties provided by the user in the CreatePredictor request, this operation includes the following properties:

  • DatasetImportJobArns - The dataset import jobs used to import training data.
  • AutoMLAlgorithmArns - If AutoML is performed, the algorithms evaluated.
  • CreationTime
  • LastModificationTime
  • Status
  • Message - If an error occurred, information about the error.

See also: AWS API Documentation

Request Syntax

response = client.describe_predictor(
    PredictorArn='string'
)
Parameters
PredictorArn (string) --

[REQUIRED]

The Amazon Resource Name (ARN) of the predictor that you want information about.

Return type
dict
Returns
Response Syntax
{
    'PredictorArn': 'string',
    'PredictorName': 'string',
    'AlgorithmArn': 'string',
    'ForecastHorizon': 123,
    'PerformAutoML': True|False,
    'PerformHPO': True|False,
    'TrainingParameters': {
        'string': 'string'
    },
    'EvaluationParameters': {
        'NumberOfBacktestWindows': 123,
        'BackTestWindowOffset': 123
    },
    'HPOConfig': {
        'ParameterRanges': {
            'CategoricalParameterRanges': [
                {
                    'Name': 'string',
                    'Values': [
                        'string',
                    ]
                },
            ],
            'ContinuousParameterRanges': [
                {
                    'Name': 'string',
                    'MaxValue': 123.0,
                    'MinValue': 123.0,
                    'ScalingType': 'Auto'|'Linear'|'Logarithmic'|'ReverseLogarithmic'
                },
            ],
            'IntegerParameterRanges': [
                {
                    'Name': 'string',
                    'MaxValue': 123,
                    'MinValue': 123,
                    'ScalingType': 'Auto'|'Linear'|'Logarithmic'|'ReverseLogarithmic'
                },
            ]
        }
    },
    'InputDataConfig': {
        'DatasetGroupArn': 'string',
        'SupplementaryFeatures': [
            {
                'Name': 'string',
                'Value': 'string'
            },
        ]
    },
    'FeaturizationConfig': {
        'ForecastFrequency': 'string',
        'ForecastDimensions': [
            'string',
        ],
        'Featurizations': [
            {
                'AttributeName': 'string',
                'FeaturizationPipeline': [
                    {
                        'FeaturizationMethodName': 'filling',
                        'FeaturizationMethodParameters': {
                            'string': 'string'
                        }
                    },
                ]
            },
        ]
    },
    'EncryptionConfig': {
        'RoleArn': 'string',
        'KMSKeyArn': 'string'
    },
    'DatasetImportJobArns': [
        'string',
    ],
    'AutoMLAlgorithmArns': [
        'string',
    ],
    'Status': 'string',
    'Message': 'string',
    'CreationTime': datetime(2015, 1, 1),
    'LastModificationTime': datetime(2015, 1, 1)
}

Response Structure

  • (dict) --
    • PredictorArn (string) --

      The ARN of the predictor.

    • PredictorName (string) --

      The name of the predictor.

    • AlgorithmArn (string) --

      The Amazon Resource Name (ARN) of the algorithm used for model training.

    • ForecastHorizon (integer) --

      The number of time-steps of the forecast. The forecast horizon is also called the prediction length.

    • PerformAutoML (boolean) --

      Whether the predictor is set to perform AutoML.

    • PerformHPO (boolean) --

      Whether the predictor is set to perform HPO.

    • TrainingParameters (dict) --

      The training parameters to override for model training. The parameters that you can override are listed in the individual algorithms in aws-forecast-choosing-recipes .

      • (string) --
        • (string) --
    • EvaluationParameters (dict) --

      Used to override the default evaluation parameters of the specified algorithm. Amazon Forecast evaluates a predictor by splitting a dataset into training data and testing data. The evaluation parameters define how to perform the split and the number of iterations.

      • NumberOfBacktestWindows (integer) --

        The number of times to split the input data. The default is 1. The range is 1 through 5.

      • BackTestWindowOffset (integer) --

        The point from the end of the dataset where you want to split the data for model training and evaluation. The value is specified as the number of data points.

    • HPOConfig (dict) --

      The hyperparameter override values for the algorithm.

      • ParameterRanges (dict) --

        Specifies the ranges of valid values for the hyperparameters.

        • CategoricalParameterRanges (list) --

          Specifies the tunable range for each categorical hyperparameter.

          • (dict) --

            Specifies a categorical hyperparameter and it's range of tunable values. This object is part of the ParameterRanges object.

            • Name (string) --

              The name of the categorical hyperparameter to tune.

            • Values (list) --

              A list of the tunable categories for the hyperparameter.

              • (string) --
        • ContinuousParameterRanges (list) --

          Specifies the tunable range for each continuous hyperparameter.

          • (dict) --

            Specifies a continuous hyperparameter and it's range of tunable values. This object is part of the ParameterRanges object.

            • Name (string) --

              The name of the hyperparameter to tune.

            • MaxValue (float) --

              The maximum tunable value of the hyperparameter.

            • MinValue (float) --

              The minimum tunable value of the hyperparameter.

            • ScalingType (string) --

              The scale that hyperparameter tuning uses to search the hyperparameter range. For information about choosing a hyperparameter scale, see Hyperparameter Scaling . One of the following values:

              Auto

              Amazon Forecast hyperparameter tuning chooses the best scale for the hyperparameter.

              Linear

              Hyperparameter tuning searches the values in the hyperparameter range by using a linear scale.

              Logarithmic

              Hyperparameter tuning searches the values in the hyperparameter range by using a logarithmic scale.

              Logarithmic scaling works only for ranges that have only values greater than 0.

              ReverseLogarithmic

              Hyperparemeter tuning searches the values in the hyperparameter range by using a reverse logarithmic scale.

              Reverse logarithmic scaling works only for ranges that are entirely within the range 0 <= x < 1.0.

        • IntegerParameterRanges (list) --

          Specifies the tunable range for each integer hyperparameter.

          • (dict) --

            Specifies an integer hyperparameter and it's range of tunable values. This object is part of the ParameterRanges object.

            • Name (string) --

              The name of the hyperparameter to tune.

            • MaxValue (integer) --

              The maximum tunable value of the hyperparameter.

            • MinValue (integer) --

              The minimum tunable value of the hyperparameter.

            • ScalingType (string) --

              The scale that hyperparameter tuning uses to search the hyperparameter range. For information about choosing a hyperparameter scale, see Hyperparameter Scaling . One of the following values:

              Auto

              Amazon Forecast hyperparameter tuning chooses the best scale for the hyperparameter.

              Linear

              Hyperparameter tuning searches the values in the hyperparameter range by using a linear scale.

              Logarithmic

              Hyperparameter tuning searches the values in the hyperparameter range by using a logarithmic scale.

              Logarithmic scaling works only for ranges that have only values greater than 0.

              ReverseLogarithmic

              Not supported for IntegerParameterRange .

              Reverse logarithmic scaling works only for ranges that are entirely within the range 0 <= x < 1.0.

    • InputDataConfig (dict) --

      Describes the dataset group that contains the data to use to train the predictor.

      • DatasetGroupArn (string) --

        The Amazon Resource Name (ARN) of the dataset group.

      • SupplementaryFeatures (list) --

        An array of supplementary features. For this release, the only supported feature is a holiday calendar.

        • (dict) --

          Describes a supplementary feature of a dataset group. This object is part of the InputDataConfig object.

          For this release, the only supported feature is a holiday calendar. If the calendar is used, all data should belong to the same country as the calendar. For the calendar data, see http://jollyday.sourceforge.net/data.html .

          • Name (string) --

            The name of the feature. This must be "holiday".

          • Value (string) --

            One of the following 2 letter country codes:

            • "AU" - AUSTRALIA
            • "DE" - GERMANY
            • "JP" - JAPAN
            • "US" - UNITED_STATES
            • "UK" - UNITED_KINGDOM
    • FeaturizationConfig (dict) --

      The featurization configuration.

      • ForecastFrequency (string) --

        The frequency of predictions in a forecast.

        Valid intervals are Y (Year), M (Month), W (Week), D (Day), H (Hour), 30min (30 minutes), 15min (15 minutes), 10min (10 minutes), 5min (5 minutes), and 1min (1 minute). For example, "Y" indicates every year and "5min" indicates every five minutes.

      • ForecastDimensions (list) --

        An array of dimension (field) names that specify how to group the generated forecast.

        For example, suppose that you are generating a forecast for item sales across all of your stores, and your dataset contains a store_id field. If you want the sales forecast for each item by store, you would specify store_id as the dimension.

        • (string) --
      • Featurizations (list) --

        An array of featurization (transformation) information for the fields of a dataset. In this release, only a single featurization is supported.

        • (dict) --

          Provides featurization (transformation) information for a dataset field. This object is part of the FeaturizationConfig object.

          For example:

          {

          "AttributeName": "demand",

          FeaturizationPipeline [ {

          "FeaturizationMethodName": "filling",

          "FeaturizationMethodParameters": {"aggregation": "avg", "backfill": "nan"}

          } ]

          }

          • AttributeName (string) --

            The name of the schema attribute specifying the data field to be featurized. In this release, only the target field of the TARGET_TIME_SERIES dataset type is supported. For example, for the RETAIL domain, the target is demand , and for the CUSTOM domain, the target is target_value .

          • FeaturizationPipeline (list) --

            An array FeaturizationMethod objects that specifies the feature transformation methods. For this release, the number of methods is limited to one.

            • (dict) --

              Provides information about a method that featurizes (transforms) a dataset field. The method is part of the FeaturizationPipeline of the Featurization object. If FeaturizationMethodParameters isn't specified, Amazon Forecast uses default parameters.

              For example:

              {

              "FeaturizationMethodName": "filling",

              "FeaturizationMethodParameters": {"aggregation": "avg", "backfill": "nan"}

              }

              • FeaturizationMethodName (string) --

                The name of the method. In this release, "filling" is the only supported method.

              • FeaturizationMethodParameters (dict) --

                The method parameters (key-value pairs). Specify these to override the default values. The following list shows the parameters and their valid values. Bold signifies the default value.

                • aggregation : sum , avg , first , min , max
                • frontfill : none
                • middlefill : zero , nan (not a number)
                • backfill : zero , nan
                • (string) --
                  • (string) --
    • EncryptionConfig (dict) --

      An AWS Key Management Service (KMS) key and the AWS Identity and Access Management (IAM) role that Amazon Forecast can assume to access the key.

      • RoleArn (string) --

        The ARN of the AWS Identity and Access Management (IAM) role that Amazon Forecast can assume to access the AWS KMS key.

        Cross-account pass role is not allowed. If you pass a role that doesn't belong to your account, an InvalidInputException is thrown.

      • KMSKeyArn (string) --

        The Amazon Resource Name (ARN) of an AWS Key Management Service (KMS) key.

    • DatasetImportJobArns (list) --

      An array of ARNs of the dataset import jobs used to import training data for the predictor.

      • (string) --
    • AutoMLAlgorithmArns (list) --

      When PerformAutoML is specified, the ARN of the chosen algorithm.

      • (string) --
    • Status (string) --

      The status of the predictor. States include:

      • ACTIVE
      • CREATE_PENDING , CREATE_IN_PROGRESS , CREATE_FAILED
      • DELETE_PENDING , DELETE_IN_PROGRESS , DELETE_FAILED
      • UPDATE_PENDING , UPDATE_IN_PROGRESS , UPDATE_FAILED

      Note

      The Status of the predictor must be ACTIVE before using the predictor to create a forecast.

    • Message (string) --

      If an error occurred, an informational message about the error.

    • CreationTime (datetime) --

      When the model training task was created.

    • LastModificationTime (datetime) --

      Initially, the same as CreationTime (status is CREATE_PENDING ). Updated when training starts (status changed to CREATE_IN_PROGRESS ), and when training is complete (status changed to ACTIVE ) or fails (status changed to CREATE_FAILED ).

generate_presigned_url(ClientMethod, Params=None, ExpiresIn=3600, HttpMethod=None)

Generate a presigned url given a client, its method, and arguments

Parameters
  • ClientMethod (string) -- The client method to presign for
  • Params (dict) -- The parameters normally passed to ClientMethod.
  • ExpiresIn (int) -- The number of seconds the presigned url is valid for. By default it expires in an hour (3600 seconds)
  • HttpMethod (string) -- The http method to use on the generated url. By default, the http method is whatever is used in the method's model.
Returns

The presigned url

get_accuracy_metrics(**kwargs)

Provides metrics on the accuracy of the models that were trained by the CreatePredictor operation. Use metrics to see how well the model performed and to decide whether to use the predictor to generate a forecast.

Metrics are generated for each backtest window evaluated. For more information, see EvaluationParameters .

The parameters of the filling method determine which items contribute to the metrics. If zero is specified, all items contribute. If nan is specified, only those items that have complete data in the range being evaluated contribute. For more information, see FeaturizationMethod .

For an example of how to train a model and review metrics, see getting-started .

See also: AWS API Documentation

Request Syntax

response = client.get_accuracy_metrics(
    PredictorArn='string'
)
Parameters
PredictorArn (string) --

[REQUIRED]

The Amazon Resource Name (ARN) of the predictor to get metrics for.

Return type
dict
Returns
Response Syntax
{
    'PredictorEvaluationResults': [
        {
            'AlgorithmArn': 'string',
            'TestWindows': [
                {
                    'TestWindowStart': datetime(2015, 1, 1),
                    'TestWindowEnd': datetime(2015, 1, 1),
                    'ItemCount': 123,
                    'EvaluationType': 'SUMMARY'|'COMPUTED',
                    'Metrics': {
                        'RMSE': 123.0,
                        'WeightedQuantileLosses': [
                            {
                                'Quantile': 123.0,
                                'LossValue': 123.0
                            },
                        ]
                    }
                },
            ]
        },
    ]
}

Response Structure

  • (dict) --
    • PredictorEvaluationResults (list) --

      An array of results from evaluating the predictor.

      • (dict) --

        The results of evaluating an algorithm. Returned as part of the GetAccuracyMetrics response.

        • AlgorithmArn (string) --

          The Amazon Resource Name (ARN) of the algorithm that was evaluated.

        • TestWindows (list) --

          The array of test windows used for evaluating the algorithm. The NumberOfBacktestWindows from the EvaluationParameters object determines the number of windows in the array.

          • (dict) --

            The metrics for a time range within the evaluation portion of a dataset. This object is part of the EvaluationResult object.

            The TestWindowStart and TestWindowEnd parameters are determined by the BackTestWindowOffset parameter of the EvaluationParameters object.

            • TestWindowStart (datetime) --

              The timestamp that defines the start of the window.

            • TestWindowEnd (datetime) --

              The timestamp that defines the end of the window.

            • ItemCount (integer) --

              The number of data points within the window.

            • EvaluationType (string) --

              The type of evaluation.

              • SUMMARY - The average metrics across all windows.
              • COMPUTED - The metrics for the specified window.
            • Metrics (dict) --

              Provides metrics used to evaluate the performance of a predictor. This object is part of the WindowSummary object.

              • RMSE (float) --

                The root mean square error (RMSE).

              • WeightedQuantileLosses (list) --

                An array of weighted quantile losses. Quantiles divide a probability distribution into regions of equal probability. The distribution in this case is the loss function.

                • (dict) --

                  The weighted loss value for a quantile. This object is part of the Metrics object.

                  • Quantile (float) --

                    The quantile. Quantiles divide a probability distribution into regions of equal probability. For example, if the distribution was divided into 5 regions of equal probability, the quantiles would be 0.2, 0.4, 0.6, and 0.8.

                  • LossValue (float) --

                    The difference between the predicted value and actual value over the quantile, weighted (normalized) by dividing by the sum over all quantiles.

get_paginator(operation_name)

Create a paginator for an operation.

Parameters
operation_name (string) -- The operation name. This is the same name as the method name on the client. For example, if the method name is create_foo, and you'd normally invoke the operation as client.create_foo(**kwargs), if the create_foo operation can be paginated, you can use the call client.get_paginator("create_foo").
Raises OperationNotPageableError
Raised if the operation is not pageable. You can use the client.can_paginate method to check if an operation is pageable.
Return type
L{botocore.paginate.Paginator}
Returns
A paginator object.
get_waiter(waiter_name)

Returns an object that can wait for some condition.

Parameters
waiter_name (str) -- The name of the waiter to get. See the waiters section of the service docs for a list of available waiters.
Returns
The specified waiter object.
Return type
botocore.waiter.Waiter
list_dataset_groups(**kwargs)

Returns a list of dataset groups created using the CreateDatasetGroup operation. For each dataset group, a summary of its properties, including its Amazon Resource Name (ARN), is returned. You can retrieve the complete set of properties by using the ARN with the DescribeDatasetGroup operation.

See also: AWS API Documentation

Request Syntax

response = client.list_dataset_groups(
    NextToken='string',
    MaxResults=123
)
Parameters
  • NextToken (string) -- 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 (integer) -- The number of items to return in the response.
Return type

dict

Returns

Response Syntax

{
    'DatasetGroups': [
        {
            'DatasetGroupArn': 'string',
            'DatasetGroupName': 'string',
            'CreationTime': datetime(2015, 1, 1),
            'LastModificationTime': datetime(2015, 1, 1)
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) --

    • DatasetGroups (list) --

      An array of objects that summarize each dataset group's properties.

      • (dict) --

        Provides a summary of the dataset group properties used in the ListDatasetGroups operation. To get the complete set of properties, call the DescribeDatasetGroup operation, and provide the listed DatasetGroupArn .

        • DatasetGroupArn (string) --

          The Amazon Resource Name (ARN) of the dataset group.

        • DatasetGroupName (string) --

          The name of the dataset group.

        • CreationTime (datetime) --

          When the datase group was created.

        • LastModificationTime (datetime) --

          When the dataset group was created or last updated from a call to the UpdateDatasetGroup operation. While the dataset group is being updated, LastModificationTime is the current query time.

    • NextToken (string) --

      If the response is truncated, Amazon Forecast returns this token. To retrieve the next set of results, use the token in the next request.

list_dataset_import_jobs(**kwargs)

Returns a list of dataset import jobs created using the CreateDatasetImportJob operation. For each import job, a summary of its properties, including its Amazon Resource Name (ARN), is returned. You can retrieve the complete set of properties by using the ARN with the DescribeDatasetImportJob operation. You can filter the list by providing an array of Filter objects.

See also: AWS API Documentation

Request Syntax

response = client.list_dataset_import_jobs(
    NextToken='string',
    MaxResults=123,
    Filters=[
        {
            'Key': 'string',
            'Value': 'string',
            'Condition': 'IS'|'IS_NOT'
        },
    ]
)
Parameters
  • NextToken (string) -- 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 (integer) -- The number of items to return in the response.
  • Filters (list) --

    An array of filters. For each filter, you provide a condition and a match statement. The condition is either IS or IS_NOT , which specifies whether to include or exclude, respectively, from the list, the predictors that match the statement. The match statement consists of a key and a value. In this release, Name is the only valid key, which filters on the DatasetImportJobName property.

    • Condition - IS or IS_NOT
    • Key - Name
    • Value - the value to match

    For example, to list all dataset import jobs named my_dataset_import_job , you would specify:

    "Filters": [ { "Condition": "IS", "Key": "Name", "Value": "my_dataset_import_job" } ]
    • (dict) --

      Describes a filter for choosing a subset of objects. Each filter consists of a condition and a match statement. The condition is either IS or IS_NOT , which specifies whether to include or exclude, respectively, the objects that match the statement. The match statement consists of a key and a value.

      • Key (string) -- [REQUIRED]

        The name of the parameter to filter on.

      • Value (string) -- [REQUIRED]

        A valid value for Key .

      • Condition (string) -- [REQUIRED]

        The condition to apply.

Return type

dict

Returns

Response Syntax

{
    'DatasetImportJobs': [
        {
            'DatasetImportJobArn': 'string',
            'DatasetImportJobName': 'string',
            'DataSource': {
                'S3Config': {
                    'Path': 'string',
                    'RoleArn': 'string',
                    'KMSKeyArn': 'string'
                }
            },
            'Status': 'string',
            'Message': 'string',
            'CreationTime': datetime(2015, 1, 1),
            'LastModificationTime': datetime(2015, 1, 1)
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) --

    • DatasetImportJobs (list) --

      An array of objects that summarize each dataset import job's properties.

      • (dict) --

        Provides a summary of the dataset import job properties used in the ListDatasetImportJobs operation. To get the complete set of properties, call the DescribeDatasetImportJob operation, and provide the listed DatasetImportJobArn .

        • DatasetImportJobArn (string) --

          The Amazon Resource Name (ARN) of the dataset import job.

        • DatasetImportJobName (string) --

          The name of the dataset import job.

        • DataSource (dict) --

          The location of the Amazon S3 bucket that contains the training data.

          • S3Config (dict) --

            The path to the training data stored in an Amazon Simple Storage Service (Amazon S3) bucket along with the credentials to access the data.

            • Path (string) --

              The path to an Amazon Simple Storage Service (Amazon S3) bucket or file(s) in an Amazon S3 bucket.

            • RoleArn (string) --

              The ARN of the AWS Identity and Access Management (IAM) role that Amazon Forecast can assume to access the Amazon S3 bucket or file(s).

              Cross-account pass role is not allowed. If you pass a role that doesn't belong to your account, an InvalidInputException is thrown.

            • KMSKeyArn (string) --

              The Amazon Resource Name (ARN) of an AWS Key Management Service (KMS) key.

        • Status (string) --

          The status of the dataset import job. The status is reflected in the status of the dataset. For example, when the import job status is CREATE_IN_PROGRESS , the status of the dataset is UPDATE_IN_PROGRESS . States include:

          • ACTIVE
          • CREATE_PENDING , CREATE_IN_PROGRESS , CREATE_FAILED
          • DELETE_PENDING , DELETE_IN_PROGRESS , DELETE_FAILED
        • Message (string) --

          If an error occurred, an informational message about the error.

        • CreationTime (datetime) --

          When the dataset import job was created.

        • LastModificationTime (datetime) --

          Dependent on the status as follows:

          • CREATE_PENDING - same as CreationTime
          • CREATE_IN_PROGRESS - the current timestamp
          • ACTIVE or CREATE_FAILED - when the job finished or failed
    • NextToken (string) --

      If the response is truncated, Amazon Forecast returns this token. To retrieve the next set of results, use the token in the next request.

list_datasets(**kwargs)

Returns a list of datasets created using the CreateDataset operation. For each dataset, a summary of its properties, including its Amazon Resource Name (ARN), is returned. You can retrieve the complete set of properties by using the ARN with the DescribeDataset operation.

See also: AWS API Documentation

Request Syntax

response = client.list_datasets(
    NextToken='string',
    MaxResults=123
)
Parameters
  • NextToken (string) -- 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 (integer) -- The number of items to return in the response.
Return type

dict

Returns

Response Syntax

{
    'Datasets': [
        {
            'DatasetArn': 'string',
            'DatasetName': 'string',
            'DatasetType': 'TARGET_TIME_SERIES'|'RELATED_TIME_SERIES'|'ITEM_METADATA',
            'Domain': 'RETAIL'|'CUSTOM'|'INVENTORY_PLANNING'|'EC2_CAPACITY'|'WORK_FORCE'|'WEB_TRAFFIC'|'METRICS',
            'CreationTime': datetime(2015, 1, 1),
            'LastModificationTime': datetime(2015, 1, 1)
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) --

    • Datasets (list) --

      An array of objects that summarize each dataset's properties.

      • (dict) --

        Provides a summary of the dataset properties used in the ListDatasets operation. To get the complete set of properties, call the DescribeDataset operation, and provide the listed DatasetArn .

        • DatasetArn (string) --

          The Amazon Resource Name (ARN) of the dataset.

        • DatasetName (string) --

          The name of the dataset.

        • DatasetType (string) --

          The dataset type.

        • Domain (string) --

          The domain associated with the dataset.

        • CreationTime (datetime) --

          When the dataset was created.

        • LastModificationTime (datetime) --

          When the dataset is created, LastModificationTime is the same as CreationTime . After a CreateDatasetImportJob operation is called, LastModificationTime is when the import job finished or failed. While data is being imported to the dataset, LastModificationTime is the current query time.

    • NextToken (string) --

      If the response is truncated, Amazon Forecast returns this token. To retrieve the next set of results, use the token in the next request.

list_forecast_export_jobs(**kwargs)

Returns a list of forecast export jobs created using the CreateForecastExportJob operation. For each forecast export job, a summary of its properties, including its Amazon Resource Name (ARN), is returned. You can retrieve the complete set of properties by using the ARN with the DescribeForecastExportJob operation. The list can be filtered using an array of Filter objects.

See also: AWS API Documentation

Request Syntax

response = client.list_forecast_export_jobs(
    NextToken='string',
    MaxResults=123,
    Filters=[
        {
            'Key': 'string',
            'Value': 'string',
            'Condition': 'IS'|'IS_NOT'
        },
    ]
)
Parameters
  • NextToken (string) -- 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 (integer) -- The number of items to return in the response.
  • Filters (list) --

    An array of filters. For each filter, you provide a condition and a match statement. The condition is either IS or IS_NOT , which specifies whether to include or exclude, respectively, from the list, the predictors that match the statement. The match statement consists of a key and a value. In this release, Name is the only valid key, which filters on the ForecastExportJobName property.

    • Condition - IS or IS_NOT
    • Key - Name
    • Value - the value to match

    For example, to list all forecast export jobs named my_forecast_export_job , you would specify:

    "Filters": [ { "Condition": "IS", "Key": "Name", "Value": "my_forecast_export_job" } ]
    • (dict) --

      Describes a filter for choosing a subset of objects. Each filter consists of a condition and a match statement. The condition is either IS or IS_NOT , which specifies whether to include or exclude, respectively, the objects that match the statement. The match statement consists of a key and a value.

      • Key (string) -- [REQUIRED]

        The name of the parameter to filter on.

      • Value (string) -- [REQUIRED]

        A valid value for Key .

      • Condition (string) -- [REQUIRED]

        The condition to apply.

Return type

dict

Returns

Response Syntax

{
    'ForecastExportJobs': [
        {
            'ForecastExportJobArn': 'string',
            'ForecastExportJobName': 'string',
            'Destination': {
                'S3Config': {
                    'Path': 'string',
                    'RoleArn': 'string',
                    'KMSKeyArn': 'string'
                }
            },
            'Status': 'string',
            'Message': 'string',
            'CreationTime': datetime(2015, 1, 1),
            'LastModificationTime': datetime(2015, 1, 1)
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) --

    • ForecastExportJobs (list) --

      An array of objects that summarize each export job's properties.

      • (dict) --

        Provides a summary of the forecast export job properties used in the ListForecastExportJobs operation. To get the complete set of properties, call the DescribeForecastExportJob operation, and provide the listed ForecastExportJobArn .

        • ForecastExportJobArn (string) --

          The Amazon Resource Name (ARN) of the forecast export job.

        • ForecastExportJobName (string) --

          The name of the forecast export job.

        • Destination (dict) --

          The path to the S3 bucket where the forecast is stored.

          • S3Config (dict) --

            The path to an Amazon Simple Storage Service (Amazon S3) bucket along with the credentials to access the bucket.

            • Path (string) --

              The path to an Amazon Simple Storage Service (Amazon S3) bucket or file(s) in an Amazon S3 bucket.

            • RoleArn (string) --

              The ARN of the AWS Identity and Access Management (IAM) role that Amazon Forecast can assume to access the Amazon S3 bucket or file(s).

              Cross-account pass role is not allowed. If you pass a role that doesn't belong to your account, an InvalidInputException is thrown.

            • KMSKeyArn (string) --

              The Amazon Resource Name (ARN) of an AWS Key Management Service (KMS) key.

        • Status (string) --

          The status of the forecast export job. One of the following states:

          • ACTIVE
          • CREATE_PENDING , CREATE_IN_PROGRESS , CREATE_FAILED
          • DELETE_PENDING , DELETE_IN_PROGRESS , DELETE_FAILED

          Note

          The Status of the forecast export job must be ACTIVE before you can access the forecast in your Amazon S3 bucket.

        • Message (string) --

          If an error occurred, an informational message about the error.

        • CreationTime (datetime) --

          When the forecast export job was created.

        • LastModificationTime (datetime) --

          When the last successful export job finished.

    • NextToken (string) --

      If the response is truncated, Amazon Forecast returns this token. To retrieve the next set of results, use the token in the next request.

list_forecasts(**kwargs)

Returns a list of forecasts created using the CreateForecast operation. For each forecast, a summary of its properties, including its Amazon Resource Name (ARN), is returned. You can retrieve the complete set of properties by using the ARN with the DescribeForecast operation. The list can be filtered using an array of Filter objects.

See also: AWS API Documentation

Request Syntax

response = client.list_forecasts(
    NextToken='string',
    MaxResults=123,
    Filters=[
        {
            'Key': 'string',
            'Value': 'string',
            'Condition': 'IS'|'IS_NOT'
        },
    ]
)
Parameters
  • NextToken (string) -- 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 (integer) -- The number of items to return in the response.
  • Filters (list) --

    An array of filters. For each filter, you provide a condition and a match statement. The condition is either IS or IS_NOT , which specifies whether to include or exclude, respectively, from the list, the predictors that match the statement. The match statement consists of a key and a value. In this release, Name is the only valid key, which filters on the ForecastName property.

    • Condition - IS or IS_NOT
    • Key - Name
    • Value - the value to match

    For example, to list all forecasts named my_forecast , you would specify:

    "Filters": [ { "Condition": "IS", "Key": "Name", "Value": "my_forecast" } ]
    • (dict) --

      Describes a filter for choosing a subset of objects. Each filter consists of a condition and a match statement. The condition is either IS or IS_NOT , which specifies whether to include or exclude, respectively, the objects that match the statement. The match statement consists of a key and a value.

      • Key (string) -- [REQUIRED]

        The name of the parameter to filter on.

      • Value (string) -- [REQUIRED]

        A valid value for Key .

      • Condition (string) -- [REQUIRED]

        The condition to apply.

Return type

dict

Returns

Response Syntax

{
    'Forecasts': [
        {
            'ForecastArn': 'string',
            'ForecastName': 'string',
            'PredictorArn': 'string',
            'DatasetGroupArn': 'string',
            'Status': 'string',
            'Message': 'string',
            'CreationTime': datetime(2015, 1, 1),
            'LastModificationTime': datetime(2015, 1, 1)
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) --

    • Forecasts (list) --

      An array of objects that summarize each forecast's properties.

      • (dict) --

        Provides a summary of the forecast properties used in the ListForecasts operation. To get the complete set of properties, call the DescribeForecast operation, and provide the listed ForecastArn .

        • ForecastArn (string) --

          The ARN of the forecast.

        • ForecastName (string) --

          The name of the forecast.

        • PredictorArn (string) --

          The ARN of the predictor used to generate the forecast.

        • DatasetGroupArn (string) --

          The Amazon Resource Name (ARN) of the dataset group that provided the data used to train the predictor.

        • Status (string) --

          The status of the forecast. States include:

          • ACTIVE
          • CREATE_PENDING , CREATE_IN_PROGRESS , CREATE_FAILED
          • DELETE_PENDING , DELETE_IN_PROGRESS , DELETE_FAILED

          Note

          The Status of the forecast must be ACTIVE before you can query or export the forecast.

        • Message (string) --

          If an error occurred, an informational message about the error.

        • CreationTime (datetime) --

          When the forecast creation task was created.

        • LastModificationTime (datetime) --

          Initially, the same as CreationTime (status is CREATE_PENDING ). Updated when inference (creating the forecast) starts (status changed to CREATE_IN_PROGRESS ), and when inference is complete (status changed to ACTIVE ) or fails (status changed to CREATE_FAILED ).

    • NextToken (string) --

      If the response is truncated, Amazon Forecast returns this token. To retrieve the next set of results, use the token in the next request.

list_predictors(**kwargs)

Returns a list of predictors created using the CreatePredictor operation. For each predictor, a summary of its properties, including its Amazon Resource Name (ARN), is returned. You can retrieve the complete set of properties by using the ARN with the DescribePredictor operation. The list can be filtered using an array of Filter objects.

See also: AWS API Documentation

Request Syntax

response = client.list_predictors(
    NextToken='string',
    MaxResults=123,
    Filters=[
        {
            'Key': 'string',
            'Value': 'string',
            'Condition': 'IS'|'IS_NOT'
        },
    ]
)
Parameters
  • NextToken (string) -- 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 (integer) -- The number of items to return in the response.
  • Filters (list) --

    An array of filters. For each filter, you provide a condition and a match statement. The condition is either IS or IS_NOT , which specifies whether to include or exclude, respectively, from the list, the predictors that match the statement. The match statement consists of a key and a value. In this release, Name is the only valid key, which filters on the PredictorName property.

    • Condition - IS or IS_NOT
    • Key - Name
    • Value - the value to match

    For example, to list all predictors named my_predictor , you would specify:

    "Filters": [ { "Condition": "IS", "Key": "Name", "Value": "my_predictor" } ]
    • (dict) --

      Describes a filter for choosing a subset of objects. Each filter consists of a condition and a match statement. The condition is either IS or IS_NOT , which specifies whether to include or exclude, respectively, the objects that match the statement. The match statement consists of a key and a value.

      • Key (string) -- [REQUIRED]

        The name of the parameter to filter on.

      • Value (string) -- [REQUIRED]

        A valid value for Key .

      • Condition (string) -- [REQUIRED]

        The condition to apply.

Return type

dict

Returns

Response Syntax

{
    'Predictors': [
        {
            'PredictorArn': 'string',
            'PredictorName': 'string',
            'DatasetGroupArn': 'string',
            'Status': 'string',
            'Message': 'string',
            'CreationTime': datetime(2015, 1, 1),
            'LastModificationTime': datetime(2015, 1, 1)
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) --

    • Predictors (list) --

      An array of objects that summarize each predictor's properties.

      • (dict) --

        Provides a summary of the predictor properties used in the ListPredictors operation. To get the complete set of properties, call the DescribePredictor operation, and provide the listed PredictorArn .

        • PredictorArn (string) --

          The ARN of the predictor.

        • PredictorName (string) --

          The name of the predictor.

        • DatasetGroupArn (string) --

          The Amazon Resource Name (ARN) of the dataset group that contains the data used to train the predictor.

        • Status (string) --

          The status of the predictor. States include:

          • ACTIVE
          • CREATE_PENDING , CREATE_IN_PROGRESS , CREATE_FAILED
          • DELETE_PENDING , DELETE_IN_PROGRESS , DELETE_FAILED
          • UPDATE_PENDING , UPDATE_IN_PROGRESS , UPDATE_FAILED

          Note

          The Status of the predictor must be ACTIVE before using the predictor to create a forecast.

        • Message (string) --

          If an error occurred, an informational message about the error.

        • CreationTime (datetime) --

          When the model training task was created.

        • LastModificationTime (datetime) --

          Initially, the same as CreationTime (status is CREATE_PENDING ). Updated when training starts (status changed to CREATE_IN_PROGRESS ), and when training is complete (status changed to ACTIVE ) or fails (status changed to CREATE_FAILED ).

    • NextToken (string) --

      If the response is truncated, Amazon Forecast returns this token. To retrieve the next set of results, use the token in the next request.

update_dataset_group(**kwargs)

Replaces any existing datasets in the dataset group with the specified datasets.

Note

The Status of the dataset group must be ACTIVE before creating a predictor using the dataset group. Use the DescribeDatasetGroup operation to get the status.

See also: AWS API Documentation

Request Syntax

response = client.update_dataset_group(
    DatasetGroupArn='string',
    DatasetArns=[
        'string',
    ]
)
Parameters
  • DatasetGroupArn (string) --

    [REQUIRED]

    The ARN of the dataset group.

  • DatasetArns (list) --

    [REQUIRED]

    An array of Amazon Resource Names (ARNs) of the datasets to add to the dataset group.

    • (string) --
Return type

dict

Returns

Response Syntax

{}

Response Structure

  • (dict) --

Paginators

The available paginators are:

class ForecastService.Paginator.ListDatasetGroups
paginator = client.get_paginator('list_dataset_groups')
paginate(**kwargs)

Creates an iterator that will paginate through responses from ForecastService.Client.list_dataset_groups().

See also: AWS API Documentation

Request Syntax

response_iterator = paginator.paginate(
    PaginationConfig={
        'MaxItems': 123,
        'PageSize': 123,
        'StartingToken': 'string'
    }
)
Parameters
PaginationConfig (dict) --

A dictionary that provides parameters to control pagination.

  • MaxItems (integer) --

    The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken will be provided in the output that you can use to resume pagination.

  • PageSize (integer) --

    The size of each page.

  • StartingToken (string) --

    A token to specify where to start paginating. This is the NextToken from a previous response.

Return type
dict
Returns
Response Syntax
{
    'DatasetGroups': [
        {
            'DatasetGroupArn': 'string',
            'DatasetGroupName': 'string',
            'CreationTime': datetime(2015, 1, 1),
            'LastModificationTime': datetime(2015, 1, 1)
        },
    ],

}

Response Structure

  • (dict) --
    • DatasetGroups (list) --

      An array of objects that summarize each dataset group's properties.

      • (dict) --

        Provides a summary of the dataset group properties used in the ListDatasetGroups operation. To get the complete set of properties, call the DescribeDatasetGroup operation, and provide the listed DatasetGroupArn .

        • DatasetGroupArn (string) --

          The Amazon Resource Name (ARN) of the dataset group.

        • DatasetGroupName (string) --

          The name of the dataset group.

        • CreationTime (datetime) --

          When the datase group was created.

        • LastModificationTime (datetime) --

          When the dataset group was created or last updated from a call to the UpdateDatasetGroup operation. While the dataset group is being updated, LastModificationTime is the current query time.

class ForecastService.Paginator.ListDatasetImportJobs
paginator = client.get_paginator('list_dataset_import_jobs')
paginate(**kwargs)

Creates an iterator that will paginate through responses from ForecastService.Client.list_dataset_import_jobs().

See also: AWS API Documentation

Request Syntax

response_iterator = paginator.paginate(
    Filters=[
        {
            'Key': 'string',
            'Value': 'string',
            'Condition': 'IS'|'IS_NOT'
        },
    ],
    PaginationConfig={
        'MaxItems': 123,
        'PageSize': 123,
        'StartingToken': 'string'
    }
)
Parameters
  • Filters (list) --

    An array of filters. For each filter, you provide a condition and a match statement. The condition is either IS or IS_NOT , which specifies whether to include or exclude, respectively, from the list, the predictors that match the statement. The match statement consists of a key and a value. In this release, Name is the only valid key, which filters on the DatasetImportJobName property.

    • Condition - IS or IS_NOT
    • Key - Name
    • Value - the value to match

    For example, to list all dataset import jobs named my_dataset_import_job , you would specify:

    "Filters": [ { "Condition": "IS", "Key": "Name", "Value": "my_dataset_import_job" } ]
    • (dict) --

      Describes a filter for choosing a subset of objects. Each filter consists of a condition and a match statement. The condition is either IS or IS_NOT , which specifies whether to include or exclude, respectively, the objects that match the statement. The match statement consists of a key and a value.

      • Key (string) -- [REQUIRED]

        The name of the parameter to filter on.

      • Value (string) -- [REQUIRED]

        A valid value for Key .

      • Condition (string) -- [REQUIRED]

        The condition to apply.

  • PaginationConfig (dict) --

    A dictionary that provides parameters to control pagination.

    • MaxItems (integer) --

      The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken will be provided in the output that you can use to resume pagination.

    • PageSize (integer) --

      The size of each page.

    • StartingToken (string) --

      A token to specify where to start paginating. This is the NextToken from a previous response.

Return type

dict

Returns

Response Syntax

{
    'DatasetImportJobs': [
        {
            'DatasetImportJobArn': 'string',
            'DatasetImportJobName': 'string',
            'DataSource': {
                'S3Config': {
                    'Path': 'string',
                    'RoleArn': 'string',
                    'KMSKeyArn': 'string'
                }
            },
            'Status': 'string',
            'Message': 'string',
            'CreationTime': datetime(2015, 1, 1),
            'LastModificationTime': datetime(2015, 1, 1)
        },
    ],

}

Response Structure

  • (dict) --

    • DatasetImportJobs (list) --

      An array of objects that summarize each dataset import job's properties.

      • (dict) --

        Provides a summary of the dataset import job properties used in the ListDatasetImportJobs operation. To get the complete set of properties, call the DescribeDatasetImportJob operation, and provide the listed DatasetImportJobArn .

        • DatasetImportJobArn (string) --

          The Amazon Resource Name (ARN) of the dataset import job.

        • DatasetImportJobName (string) --

          The name of the dataset import job.

        • DataSource (dict) --

          The location of the Amazon S3 bucket that contains the training data.

          • S3Config (dict) --

            The path to the training data stored in an Amazon Simple Storage Service (Amazon S3) bucket along with the credentials to access the data.

            • Path (string) --

              The path to an Amazon Simple Storage Service (Amazon S3) bucket or file(s) in an Amazon S3 bucket.

            • RoleArn (string) --

              The ARN of the AWS Identity and Access Management (IAM) role that Amazon Forecast can assume to access the Amazon S3 bucket or file(s).

              Cross-account pass role is not allowed. If you pass a role that doesn't belong to your account, an InvalidInputException is thrown.

            • KMSKeyArn (string) --

              The Amazon Resource Name (ARN) of an AWS Key Management Service (KMS) key.

        • Status (string) --

          The status of the dataset import job. The status is reflected in the status of the dataset. For example, when the import job status is CREATE_IN_PROGRESS , the status of the dataset is UPDATE_IN_PROGRESS . States include:

          • ACTIVE
          • CREATE_PENDING , CREATE_IN_PROGRESS , CREATE_FAILED
          • DELETE_PENDING , DELETE_IN_PROGRESS , DELETE_FAILED
        • Message (string) --

          If an error occurred, an informational message about the error.

        • CreationTime (datetime) --

          When the dataset import job was created.

        • LastModificationTime (datetime) --

          Dependent on the status as follows:

          • CREATE_PENDING - same as CreationTime
          • CREATE_IN_PROGRESS - the current timestamp
          • ACTIVE or CREATE_FAILED - when the job finished or failed

class ForecastService.Paginator.ListDatasets
paginator = client.get_paginator('list_datasets')
paginate(**kwargs)

Creates an iterator that will paginate through responses from ForecastService.Client.list_datasets().

See also: AWS API Documentation

Request Syntax

response_iterator = paginator.paginate(
    PaginationConfig={
        'MaxItems': 123,
        'PageSize': 123,
        'StartingToken': 'string'
    }
)
Parameters
PaginationConfig (dict) --

A dictionary that provides parameters to control pagination.

  • MaxItems (integer) --

    The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken will be provided in the output that you can use to resume pagination.

  • PageSize (integer) --

    The size of each page.

  • StartingToken (string) --

    A token to specify where to start paginating. This is the NextToken from a previous response.

Return type
dict
Returns
Response Syntax
{
    'Datasets': [
        {
            'DatasetArn': 'string',
            'DatasetName': 'string',
            'DatasetType': 'TARGET_TIME_SERIES'|'RELATED_TIME_SERIES'|'ITEM_METADATA',
            'Domain': 'RETAIL'|'CUSTOM'|'INVENTORY_PLANNING'|'EC2_CAPACITY'|'WORK_FORCE'|'WEB_TRAFFIC'|'METRICS',
            'CreationTime': datetime(2015, 1, 1),
            'LastModificationTime': datetime(2015, 1, 1)
        },
    ],

}

Response Structure

  • (dict) --
    • Datasets (list) --

      An array of objects that summarize each dataset's properties.

      • (dict) --

        Provides a summary of the dataset properties used in the ListDatasets operation. To get the complete set of properties, call the DescribeDataset operation, and provide the listed DatasetArn .

        • DatasetArn (string) --

          The Amazon Resource Name (ARN) of the dataset.

        • DatasetName (string) --

          The name of the dataset.

        • DatasetType (string) --

          The dataset type.

        • Domain (string) --

          The domain associated with the dataset.

        • CreationTime (datetime) --

          When the dataset was created.

        • LastModificationTime (datetime) --

          When the dataset is created, LastModificationTime is the same as CreationTime . After a CreateDatasetImportJob operation is called, LastModificationTime is when the import job finished or failed. While data is being imported to the dataset, LastModificationTime is the current query time.

class ForecastService.Paginator.ListForecastExportJobs
paginator = client.get_paginator('list_forecast_export_jobs')
paginate(**kwargs)

Creates an iterator that will paginate through responses from ForecastService.Client.list_forecast_export_jobs().

See also: AWS API Documentation

Request Syntax

response_iterator = paginator.paginate(
    Filters=[
        {
            'Key': 'string',
            'Value': 'string',
            'Condition': 'IS'|'IS_NOT'
        },
    ],
    PaginationConfig={
        'MaxItems': 123,
        'PageSize': 123,
        'StartingToken': 'string'
    }
)
Parameters
  • Filters (list) --

    An array of filters. For each filter, you provide a condition and a match statement. The condition is either IS or IS_NOT , which specifies whether to include or exclude, respectively, from the list, the predictors that match the statement. The match statement consists of a key and a value. In this release, Name is the only valid key, which filters on the ForecastExportJobName property.

    • Condition - IS or IS_NOT
    • Key - Name
    • Value - the value to match

    For example, to list all forecast export jobs named my_forecast_export_job , you would specify:

    "Filters": [ { "Condition": "IS", "Key": "Name", "Value": "my_forecast_export_job" } ]
    • (dict) --

      Describes a filter for choosing a subset of objects. Each filter consists of a condition and a match statement. The condition is either IS or IS_NOT , which specifies whether to include or exclude, respectively, the objects that match the statement. The match statement consists of a key and a value.

      • Key (string) -- [REQUIRED]

        The name of the parameter to filter on.

      • Value (string) -- [REQUIRED]

        A valid value for Key .

      • Condition (string) -- [REQUIRED]

        The condition to apply.

  • PaginationConfig (dict) --

    A dictionary that provides parameters to control pagination.

    • MaxItems (integer) --

      The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken will be provided in the output that you can use to resume pagination.

    • PageSize (integer) --

      The size of each page.

    • StartingToken (string) --

      A token to specify where to start paginating. This is the NextToken from a previous response.

Return type

dict

Returns

Response Syntax

{
    'ForecastExportJobs': [
        {
            'ForecastExportJobArn': 'string',
            'ForecastExportJobName': 'string',
            'Destination': {
                'S3Config': {
                    'Path': 'string',
                    'RoleArn': 'string',
                    'KMSKeyArn': 'string'
                }
            },
            'Status': 'string',
            'Message': 'string',
            'CreationTime': datetime(2015, 1, 1),
            'LastModificationTime': datetime(2015, 1, 1)
        },
    ],

}

Response Structure

  • (dict) --

    • ForecastExportJobs (list) --

      An array of objects that summarize each export job's properties.

      • (dict) --

        Provides a summary of the forecast export job properties used in the ListForecastExportJobs operation. To get the complete set of properties, call the DescribeForecastExportJob operation, and provide the listed ForecastExportJobArn .

        • ForecastExportJobArn (string) --

          The Amazon Resource Name (ARN) of the forecast export job.

        • ForecastExportJobName (string) --

          The name of the forecast export job.

        • Destination (dict) --

          The path to the S3 bucket where the forecast is stored.

          • S3Config (dict) --

            The path to an Amazon Simple Storage Service (Amazon S3) bucket along with the credentials to access the bucket.

            • Path (string) --

              The path to an Amazon Simple Storage Service (Amazon S3) bucket or file(s) in an Amazon S3 bucket.

            • RoleArn (string) --

              The ARN of the AWS Identity and Access Management (IAM) role that Amazon Forecast can assume to access the Amazon S3 bucket or file(s).

              Cross-account pass role is not allowed. If you pass a role that doesn't belong to your account, an InvalidInputException is thrown.

            • KMSKeyArn (string) --

              The Amazon Resource Name (ARN) of an AWS Key Management Service (KMS) key.

        • Status (string) --

          The status of the forecast export job. One of the following states:

          • ACTIVE
          • CREATE_PENDING , CREATE_IN_PROGRESS , CREATE_FAILED
          • DELETE_PENDING , DELETE_IN_PROGRESS , DELETE_FAILED

          Note

          The Status of the forecast export job must be ACTIVE before you can access the forecast in your Amazon S3 bucket.

        • Message (string) --

          If an error occurred, an informational message about the error.

        • CreationTime (datetime) --

          When the forecast export job was created.

        • LastModificationTime (datetime) --

          When the last successful export job finished.

class ForecastService.Paginator.ListForecasts
paginator = client.get_paginator('list_forecasts')
paginate(**kwargs)

Creates an iterator that will paginate through responses from ForecastService.Client.list_forecasts().

See also: AWS API Documentation

Request Syntax

response_iterator = paginator.paginate(
    Filters=[
        {
            'Key': 'string',
            'Value': 'string',
            'Condition': 'IS'|'IS_NOT'
        },
    ],
    PaginationConfig={
        'MaxItems': 123,
        'PageSize': 123,
        'StartingToken': 'string'
    }
)
Parameters
  • Filters (list) --

    An array of filters. For each filter, you provide a condition and a match statement. The condition is either IS or IS_NOT , which specifies whether to include or exclude, respectively, from the list, the predictors that match the statement. The match statement consists of a key and a value. In this release, Name is the only valid key, which filters on the ForecastName property.

    • Condition - IS or IS_NOT
    • Key - Name
    • Value - the value to match

    For example, to list all forecasts named my_forecast , you would specify:

    "Filters": [ { "Condition": "IS", "Key": "Name", "Value": "my_forecast" } ]
    • (dict) --

      Describes a filter for choosing a subset of objects. Each filter consists of a condition and a match statement. The condition is either IS or IS_NOT , which specifies whether to include or exclude, respectively, the objects that match the statement. The match statement consists of a key and a value.

      • Key (string) -- [REQUIRED]

        The name of the parameter to filter on.

      • Value (string) -- [REQUIRED]

        A valid value for Key .

      • Condition (string) -- [REQUIRED]

        The condition to apply.

  • PaginationConfig (dict) --

    A dictionary that provides parameters to control pagination.

    • MaxItems (integer) --

      The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken will be provided in the output that you can use to resume pagination.

    • PageSize (integer) --

      The size of each page.

    • StartingToken (string) --

      A token to specify where to start paginating. This is the NextToken from a previous response.

Return type

dict

Returns

Response Syntax

{
    'Forecasts': [
        {
            'ForecastArn': 'string',
            'ForecastName': 'string',
            'PredictorArn': 'string',
            'DatasetGroupArn': 'string',
            'Status': 'string',
            'Message': 'string',
            'CreationTime': datetime(2015, 1, 1),
            'LastModificationTime': datetime(2015, 1, 1)
        },
    ],

}

Response Structure

  • (dict) --

    • Forecasts (list) --

      An array of objects that summarize each forecast's properties.

      • (dict) --

        Provides a summary of the forecast properties used in the ListForecasts operation. To get the complete set of properties, call the DescribeForecast operation, and provide the listed ForecastArn .

        • ForecastArn (string) --

          The ARN of the forecast.

        • ForecastName (string) --

          The name of the forecast.

        • PredictorArn (string) --

          The ARN of the predictor used to generate the forecast.

        • DatasetGroupArn (string) --

          The Amazon Resource Name (ARN) of the dataset group that provided the data used to train the predictor.

        • Status (string) --

          The status of the forecast. States include:

          • ACTIVE
          • CREATE_PENDING , CREATE_IN_PROGRESS , CREATE_FAILED
          • DELETE_PENDING , DELETE_IN_PROGRESS , DELETE_FAILED

          Note

          The Status of the forecast must be ACTIVE before you can query or export the forecast.

        • Message (string) --

          If an error occurred, an informational message about the error.

        • CreationTime (datetime) --

          When the forecast creation task was created.

        • LastModificationTime (datetime) --

          Initially, the same as CreationTime (status is CREATE_PENDING ). Updated when inference (creating the forecast) starts (status changed to CREATE_IN_PROGRESS ), and when inference is complete (status changed to ACTIVE ) or fails (status changed to CREATE_FAILED ).

class ForecastService.Paginator.ListPredictors
paginator = client.get_paginator('list_predictors')
paginate(**kwargs)

Creates an iterator that will paginate through responses from ForecastService.Client.list_predictors().

See also: AWS API Documentation

Request Syntax

response_iterator = paginator.paginate(
    Filters=[
        {
            'Key': 'string',
            'Value': 'string',
            'Condition': 'IS'|'IS_NOT'
        },
    ],
    PaginationConfig={
        'MaxItems': 123,
        'PageSize': 123,
        'StartingToken': 'string'
    }
)
Parameters
  • Filters (list) --

    An array of filters. For each filter, you provide a condition and a match statement. The condition is either IS or IS_NOT , which specifies whether to include or exclude, respectively, from the list, the predictors that match the statement. The match statement consists of a key and a value. In this release, Name is the only valid key, which filters on the PredictorName property.

    • Condition - IS or IS_NOT
    • Key - Name
    • Value - the value to match

    For example, to list all predictors named my_predictor , you would specify:

    "Filters": [ { "Condition": "IS", "Key": "Name", "Value": "my_predictor" } ]
    • (dict) --

      Describes a filter for choosing a subset of objects. Each filter consists of a condition and a match statement. The condition is either IS or IS_NOT , which specifies whether to include or exclude, respectively, the objects that match the statement. The match statement consists of a key and a value.

      • Key (string) -- [REQUIRED]

        The name of the parameter to filter on.

      • Value (string) -- [REQUIRED]

        A valid value for Key .

      • Condition (string) -- [REQUIRED]

        The condition to apply.

  • PaginationConfig (dict) --

    A dictionary that provides parameters to control pagination.

    • MaxItems (integer) --

      The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken will be provided in the output that you can use to resume pagination.

    • PageSize (integer) --

      The size of each page.

    • StartingToken (string) --

      A token to specify where to start paginating. This is the NextToken from a previous response.

Return type

dict

Returns

Response Syntax

{
    'Predictors': [
        {
            'PredictorArn': 'string',
            'PredictorName': 'string',
            'DatasetGroupArn': 'string',
            'Status': 'string',
            'Message': 'string',
            'CreationTime': datetime(2015, 1, 1),
            'LastModificationTime': datetime(2015, 1, 1)
        },
    ],

}

Response Structure

  • (dict) --

    • Predictors (list) --

      An array of objects that summarize each predictor's properties.

      • (dict) --

        Provides a summary of the predictor properties used in the ListPredictors operation. To get the complete set of properties, call the DescribePredictor operation, and provide the listed PredictorArn .

        • PredictorArn (string) --

          The ARN of the predictor.

        • PredictorName (string) --

          The name of the predictor.

        • DatasetGroupArn (string) --

          The Amazon Resource Name (ARN) of the dataset group that contains the data used to train the predictor.

        • Status (string) --

          The status of the predictor. States include:

          • ACTIVE
          • CREATE_PENDING , CREATE_IN_PROGRESS , CREATE_FAILED
          • DELETE_PENDING , DELETE_IN_PROGRESS , DELETE_FAILED
          • UPDATE_PENDING , UPDATE_IN_PROGRESS , UPDATE_FAILED

          Note

          The Status of the predictor must be ACTIVE before using the predictor to create a forecast.

        • Message (string) --

          If an error occurred, an informational message about the error.

        • CreationTime (datetime) --

          When the model training task was created.

        • LastModificationTime (datetime) --

          Initially, the same as CreationTime (status is CREATE_PENDING ). Updated when training starts (status changed to CREATE_IN_PROGRESS ), and when training is complete (status changed to ACTIVE ) or fails (status changed to CREATE_FAILED ).