ForecastService

Table of Contents

Client

class ForecastService.Client

A low-level client representing Amazon Forecast Service

Provides APIs for creating and managing Amazon Forecast resources.

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.
close()

Closes underlying endpoint connections.

create_auto_predictor(**kwargs)

Creates an Amazon Forecast predictor.

Amazon Forecast creates predictors with AutoPredictor, which involves applying the optimal combination of algorithms to each time series in your datasets. You can use CreateAutoPredictor to create new predictors or upgrade/retrain existing predictors.

Creating new predictors

The following parameters are required when creating a new predictor:

  • PredictorName - A unique name for the predictor.
  • DatasetGroupArn - The ARN of the dataset group used to train the predictor.
  • ForecastFrequency - The granularity of your forecasts (hourly, daily, weekly, etc).
  • ForecastHorizon - The number of time-steps that the model predicts. The forecast horizon is also called the prediction length.

When creating a new predictor, do not specify a value for ReferencePredictorArn .

Upgrading and retraining predictors

The following parameters are required when retraining or upgrading a predictor:

  • PredictorName - A unique name for the predictor.
  • ReferencePredictorArn - The ARN of the predictor to retrain or upgrade.

When upgrading or retraining a predictor, only specify values for the ReferencePredictorArn and PredictorName .

See also: AWS API Documentation

Request Syntax

response = client.create_auto_predictor(
    PredictorName='string',
    ForecastHorizon=123,
    ForecastTypes=[
        'string',
    ],
    ForecastDimensions=[
        'string',
    ],
    ForecastFrequency='string',
    DataConfig={
        'DatasetGroupArn': 'string',
        'AttributeConfigs': [
            {
                'AttributeName': 'string',
                'Transformations': {
                    'string': 'string'
                }
            },
        ],
        'AdditionalDatasets': [
            {
                'Name': 'string',
                'Configuration': {
                    'string': [
                        'string',
                    ]
                }
            },
        ]
    },
    EncryptionConfig={
        'RoleArn': 'string',
        'KMSKeyArn': 'string'
    },
    ReferencePredictorArn='string',
    OptimizationMetric='WAPE'|'RMSE'|'AverageWeightedQuantileLoss'|'MASE'|'MAPE',
    ExplainPredictor=True|False,
    Tags=[
        {
            'Key': 'string',
            'Value': 'string'
        },
    ],
    MonitorConfig={
        'MonitorName': 'string'
    },
    TimeAlignmentBoundary={
        'Month': 'JANUARY'|'FEBRUARY'|'MARCH'|'APRIL'|'MAY'|'JUNE'|'JULY'|'AUGUST'|'SEPTEMBER'|'OCTOBER'|'NOVEMBER'|'DECEMBER',
        'DayOfMonth': 123,
        'DayOfWeek': 'MONDAY'|'TUESDAY'|'WEDNESDAY'|'THURSDAY'|'FRIDAY'|'SATURDAY'|'SUNDAY',
        'Hour': 123
    }
)
Parameters
  • PredictorName (string) --

    [REQUIRED]

    A unique name for the predictor

  • ForecastHorizon (integer) --

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

    The maximum forecast horizon is the lesser of 500 time-steps or 1/4 of the TARGET_TIME_SERIES dataset length. If you are retraining an existing AutoPredictor, then the maximum forecast horizon is the lesser of 500 time-steps or 1/3 of the TARGET_TIME_SERIES dataset length.

    If you are upgrading to an AutoPredictor or retraining an existing AutoPredictor, you cannot update the forecast horizon parameter. You can meet this requirement by providing longer time-series in the dataset.

  • ForecastTypes (list) --

    The forecast types used to train a predictor. You can specify up to five forecast types. Forecast types can be quantiles from 0.01 to 0.99, by increments of 0.01 or higher. You can also specify the mean forecast with mean .

    • (string) --
  • ForecastDimensions (list) --

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

    For example, if you are generating forecasts for item sales across all your stores, and your dataset contains a store_id field, you would specify store_id as a dimension to group sales forecasts for each store.

    • (string) --
  • ForecastFrequency (string) --

    The frequency of predictions in a forecast.

    Valid intervals are an integer followed by Y (Year), M (Month), W (Week), D (Day), H (Hour), and min (Minute). For example, "1D" indicates every day and "15min" indicates every 15 minutes. You cannot specify a value that would overlap with the next larger frequency. That means, for example, you cannot specify a frequency of 60 minutes, because that is equivalent to 1 hour. The valid values for each frequency are the following:

    • Minute - 1-59
    • Hour - 1-23
    • Day - 1-6
    • Week - 1-4
    • Month - 1-11
    • Year - 1

    Thus, if you want every other week forecasts, specify "2W". Or, if you want quarterly forecasts, you specify "3M".

    The frequency must be greater than or equal to the TARGET_TIME_SERIES dataset frequency.

    When a RELATED_TIME_SERIES dataset is provided, the frequency must be equal to the RELATED_TIME_SERIES dataset frequency.

  • DataConfig (dict) --

    The data configuration for your dataset group and any additional datasets.

    • DatasetGroupArn (string) -- [REQUIRED]

      The ARN of the dataset group used to train the predictor.

    • AttributeConfigs (list) --

      Aggregation and filling options for attributes in your dataset group.

      • (dict) --

        Provides information about the method used to transform attributes.

        The following is an example using the RETAIL domain:

        {

        "AttributeName": "demand",

        "Transformations": {"aggregation": "sum", "middlefill": "zero", "backfill": "zero"}

        }

        • AttributeName (string) -- [REQUIRED]

          The name of the attribute as specified in the schema. Amazon Forecast supports the target field of the target time series and the related time series datasets. For example, for the RETAIL domain, the target is demand .

        • Transformations (dict) -- [REQUIRED]

          The method parameters (key-value pairs), which are a map of override parameters. Specify these parameters to override the default values. Related Time Series attributes do not accept aggregation parameters.

          The following list shows the parameters and their valid values for the "filling" featurization method for a Target Time Series dataset. Default values are bolded.

          • aggregation : sum , avg , first , min , max
          • frontfill : none
          • middlefill : zero , nan (not a number), value , median , mean , min , max
          • backfill : zero , nan , value , median , mean , min , max

          The following list shows the parameters and their valid values for a Related Time Series featurization method (there are no defaults):

          • middlefill : zero , value , median , mean , min , max
          • backfill : zero , value , median , mean , min , max
          • futurefill : zero , value , median , mean , min , max

          To set a filling method to a specific value, set the fill parameter to value and define the value in a corresponding _value parameter. For example, to set backfilling to a value of 2, include the following: "backfill": "value" and "backfill_value":"2" .

          • (string) --
            • (string) --
    • AdditionalDatasets (list) --

      Additional built-in datasets like Holidays and the Weather Index.

      • (dict) --

        Describes an additional dataset. This object is part of the DataConfig object. Forecast supports the Weather Index and Holidays additional datasets.

        Weather Index

        The Amazon Forecast Weather Index is a built-in dataset that incorporates historical and projected weather information into your model. The Weather Index supplements your datasets with over two years of historical weather data and up to 14 days of projected weather data. For more information, see Amazon Forecast Weather Index.

        Holidays

        Holidays is a built-in dataset that incorporates national holiday information into your model. It provides native support for the holiday calendars of 66 countries. To view the holiday calendars, refer to the Jollyday library. For more information, see Holidays Featurization.

        • Name (string) -- [REQUIRED]

          The name of the additional dataset. Valid names: "holiday" and "weather" .

        • Configuration (dict) --
          Weather Index

          To enable the Weather Index, do not specify a value for Configuration .

          Holidays

          Holidays

          To enable Holidays, set CountryCode to one of the following two-letter country codes:

          • "AL" - ALBANIA
          • "AR" - ARGENTINA
          • "AT" - AUSTRIA
          • "AU" - AUSTRALIA
          • "BA" - BOSNIA HERZEGOVINA
          • "BE" - BELGIUM
          • "BG" - BULGARIA
          • "BO" - BOLIVIA
          • "BR" - BRAZIL
          • "BY" - BELARUS
          • "CA" - CANADA
          • "CL" - CHILE
          • "CO" - COLOMBIA
          • "CR" - COSTA RICA
          • "HR" - CROATIA
          • "CZ" - CZECH REPUBLIC
          • "DK" - DENMARK
          • "EC" - ECUADOR
          • "EE" - ESTONIA
          • "ET" - ETHIOPIA
          • "FI" - FINLAND
          • "FR" - FRANCE
          • "DE" - GERMANY
          • "GR" - GREECE
          • "HU" - HUNGARY
          • "IS" - ICELAND
          • "IN" - INDIA
          • "IE" - IRELAND
          • "IT" - ITALY
          • "JP" - JAPAN
          • "KZ" - KAZAKHSTAN
          • "KR" - KOREA
          • "LV" - LATVIA
          • "LI" - LIECHTENSTEIN
          • "LT" - LITHUANIA
          • "LU" - LUXEMBOURG
          • "MK" - MACEDONIA
          • "MT" - MALTA
          • "MX" - MEXICO
          • "MD" - MOLDOVA
          • "ME" - MONTENEGRO
          • "NL" - NETHERLANDS
          • "NZ" - NEW ZEALAND
          • "NI" - NICARAGUA
          • "NG" - NIGERIA
          • "NO" - NORWAY
          • "PA" - PANAMA
          • "PY" - PARAGUAY
          • "PE" - PERU
          • "PL" - POLAND
          • "PT" - PORTUGAL
          • "RO" - ROMANIA
          • "RU" - RUSSIA
          • "RS" - SERBIA
          • "SK" - SLOVAKIA
          • "SI" - SLOVENIA
          • "ZA" - SOUTH AFRICA
          • "ES" - SPAIN
          • "SE" - SWEDEN
          • "CH" - SWITZERLAND
          • "UA" - UKRAINE
          • "AE" - UNITED ARAB EMIRATES
          • "US" - UNITED STATES
          • "UK" - UNITED KINGDOM
          • "UY" - URUGUAY
          • "VE" - VENEZUELA
          • (string) --
            • (list) --
              • (string) --
  • EncryptionConfig (dict) --

    An Key Management Service (KMS) key and an Identity and Access Management (IAM) role that Amazon Forecast can assume to access the key. You can specify this optional object in the CreateDataset and CreatePredictor requests.

    • RoleArn (string) -- [REQUIRED]

      The ARN of the IAM role that Amazon Forecast can assume to access the KMS key.

      Passing a role across Amazon Web Services accounts is not allowed. If you pass a role that isn't in your account, you get an InvalidInputException error.

    • KMSKeyArn (string) -- [REQUIRED]

      The Amazon Resource Name (ARN) of the KMS key.

  • ReferencePredictorArn (string) --

    The ARN of the predictor to retrain or upgrade. This parameter is only used when retraining or upgrading a predictor. When creating a new predictor, do not specify a value for this parameter.

    When upgrading or retraining a predictor, only specify values for the ReferencePredictorArn and PredictorName . The value for PredictorName must be a unique predictor name.

  • OptimizationMetric (string) -- The accuracy metric used to optimize the predictor.
  • ExplainPredictor (boolean) -- Create an Explainability resource for the predictor.
  • Tags (list) --

    Optional metadata to help you categorize and organize your predictors. Each tag consists of a key and an optional value, both of which you define. Tag keys and values are case sensitive.

    The following restrictions apply to tags:

    • For each resource, each tag key must be unique and each tag key must have one value.
    • Maximum number of tags per resource: 50.
    • Maximum key length: 128 Unicode characters in UTF-8.
    • Maximum value length: 256 Unicode characters in UTF-8.
    • Accepted characters: all letters and numbers, spaces representable in UTF-8, and + - = . _ : / @. If your tagging schema is used across other services and resources, the character restrictions of those services also apply.
    • Key prefixes cannot include any upper or lowercase combination of aws: or AWS: . Values can have this prefix. If a tag value has aws as its prefix but the key does not, Forecast considers it to be a user tag and will count against the limit of 50 tags. Tags with only the key prefix of aws do not count against your tags per resource limit. You cannot edit or delete tag keys with this prefix.
    • (dict) --

      The optional metadata that you apply to a resource to help you categorize and organize them. Each tag consists of a key and an optional value, both of which you define.

      The following basic restrictions apply to tags:

      • Maximum number of tags per resource - 50.
      • For each resource, each tag key must be unique, and each tag key can have only one value.
      • Maximum key length - 128 Unicode characters in UTF-8.
      • Maximum value length - 256 Unicode characters in UTF-8.
      • If your tagging schema is used across multiple services and resources, remember that other services may have restrictions on allowed characters. Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, and the following characters: + - = . _ : / @.
      • Tag keys and values are case sensitive.
      • Do not use aws: , AWS: , or any upper or lowercase combination of such as a prefix for keys as it is reserved for Amazon Web Services use. You cannot edit or delete tag keys with this prefix. Values can have this prefix. If a tag value has aws as its prefix but the key does not, then Forecast considers it to be a user tag and will count against the limit of 50 tags. Tags with only the key prefix of aws do not count against your tags per resource limit.
      • Key (string) -- [REQUIRED]

        One part of a key-value pair that makes up a tag. A key is a general label that acts like a category for more specific tag values.

      • Value (string) -- [REQUIRED]

        The optional part of a key-value pair that makes up a tag. A value acts as a descriptor within a tag category (key).

  • MonitorConfig (dict) --

    The configuration details for predictor monitoring. Provide a name for the monitor resource to enable predictor monitoring.

    Predictor monitoring allows you to see how your predictor's performance changes over time. For more information, see Predictor Monitoring.

    • MonitorName (string) -- [REQUIRED]

      The name of the monitor resource.

  • TimeAlignmentBoundary (dict) --

    The time boundary Forecast uses to align and aggregate any data that doesn't align with your forecast frequency. Provide the unit of time and the time boundary as a key value pair. For more information on specifying a time boundary, see Specifying a Time Boundary. If you don't provide a time boundary, Forecast uses a set of Default Time Boundaries.

    • Month (string) --

      The month to use for time alignment during aggregation. The month must be in uppercase.

    • DayOfMonth (integer) --

      The day of the month to use for time alignment during aggregation.

    • DayOfWeek (string) --

      The day of week to use for time alignment during aggregation. The day must be in uppercase.

    • Hour (integer) --

      The hour of day to use for time alignment during aggregation.

Return type

dict

Returns

Response Syntax

{
    'PredictorArn': 'string'
}

Response Structure

  • (dict) --

    • PredictorArn (string) --

      The Amazon Resource Name (ARN) of the predictor.

Exceptions

  • ForecastService.Client.exceptions.InvalidInputException
  • ForecastService.Client.exceptions.ResourceAlreadyExistsException
  • ForecastService.Client.exceptions.ResourceNotFoundException
  • ForecastService.Client.exceptions.ResourceInUseException
  • ForecastService.Client.exceptions.LimitExceededException
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.
  • 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 in the dataset, including the field name and data type.

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

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

For example Forecast datasets, see the Amazon Forecast Sample GitHub repository.

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'|'geolocation'
            },
        ]
    },
    EncryptionConfig={
        'RoleArn': 'string',
        'KMSKeyArn': 'string'
    },
    Tags=[
        {
            'Key': 'string',
            'Value': 'string'
        },
    ]
)
Parameters
  • DatasetName (string) --

    [REQUIRED]

    A name for the dataset.

  • Domain (string) --

    [REQUIRED]

    The domain associated with the dataset. When you add a dataset to a dataset group, this value and the value specified for the Domain parameter of the CreateDatasetGroup operation must match.

    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 Importing datasets.

  • DatasetType (string) --

    [REQUIRED]

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

  • DataFrequency (string) --

    The frequency of data collection. This parameter is required for RELATED_TIME_SERIES datasets.

    Valid intervals are an integer followed by Y (Year), M (Month), W (Week), D (Day), H (Hour), and min (Minute). For example, "1D" indicates every day and "15min" indicates every 15 minutes. You cannot specify a value that would overlap with the next larger frequency. That means, for example, you cannot specify a frequency of 60 minutes, because that is equivalent to 1 hour. The valid values for each frequency are the following:

    • Minute - 1-59
    • Hour - 1-23
    • Day - 1-6
    • Week - 1-4
    • Month - 1-11
    • Year - 1

    Thus, if you want every other week forecasts, specify "2W". Or, if you want quarterly forecasts, you specify "3M".

  • 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 Dataset Domains and Dataset 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 dataset field. 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.

          For a related time series dataset, other than date, item_id, and forecast dimensions attributes, all attributes should be of numerical type (integer/float).

  • EncryptionConfig (dict) --

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

    • RoleArn (string) -- [REQUIRED]

      The ARN of the IAM role that Amazon Forecast can assume to access the KMS key.

      Passing a role across Amazon Web Services accounts is not allowed. If you pass a role that isn't in your account, you get an InvalidInputException error.

    • KMSKeyArn (string) -- [REQUIRED]

      The Amazon Resource Name (ARN) of the KMS key.

  • Tags (list) --

    The optional metadata that you apply to the dataset to help you categorize and organize them. Each tag consists of a key and an optional value, both of which you define.

    The following basic restrictions apply to tags:

    • Maximum number of tags per resource - 50.
    • For each resource, each tag key must be unique, and each tag key can have only one value.
    • Maximum key length - 128 Unicode characters in UTF-8.
    • Maximum value length - 256 Unicode characters in UTF-8.
    • If your tagging schema is used across multiple services and resources, remember that other services may have restrictions on allowed characters. Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, and the following characters: + - = . _ : / @.
    • Tag keys and values are case sensitive.
    • Do not use aws: , AWS: , or any upper or lowercase combination of such as a prefix for keys as it is reserved for Amazon Web Services use. You cannot edit or delete tag keys with this prefix. Values can have this prefix. If a tag value has aws as its prefix but the key does not, then Forecast considers it to be a user tag and will count against the limit of 50 tags. Tags with only the key prefix of aws do not count against your tags per resource limit.
    • (dict) --

      The optional metadata that you apply to a resource to help you categorize and organize them. Each tag consists of a key and an optional value, both of which you define.

      The following basic restrictions apply to tags:

      • Maximum number of tags per resource - 50.
      • For each resource, each tag key must be unique, and each tag key can have only one value.
      • Maximum key length - 128 Unicode characters in UTF-8.
      • Maximum value length - 256 Unicode characters in UTF-8.
      • If your tagging schema is used across multiple services and resources, remember that other services may have restrictions on allowed characters. Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, and the following characters: + - = . _ : / @.
      • Tag keys and values are case sensitive.
      • Do not use aws: , AWS: , or any upper or lowercase combination of such as a prefix for keys as it is reserved for Amazon Web Services use. You cannot edit or delete tag keys with this prefix. Values can have this prefix. If a tag value has aws as its prefix but the key does not, then Forecast considers it to be a user tag and will count against the limit of 50 tags. Tags with only the key prefix of aws do not count against your tags per resource limit.
      • Key (string) -- [REQUIRED]

        One part of a key-value pair that makes up a tag. A key is a general label that acts like a category for more specific tag values.

      • Value (string) -- [REQUIRED]

        The optional part of a key-value pair that makes up a tag. A value acts as a descriptor within a tag category (key).

Return type

dict

Returns

Response Syntax

{
    'DatasetArn': 'string'
}

Response Structure

  • (dict) --

    • DatasetArn (string) --

      The Amazon Resource Name (ARN) of the dataset.

Exceptions

  • ForecastService.Client.exceptions.InvalidInputException
  • ForecastService.Client.exceptions.ResourceAlreadyExistsException
  • ForecastService.Client.exceptions.LimitExceededException
create_dataset_group(**kwargs)

Creates a dataset group, which holds a collection of related datasets. You can add datasets to the dataset group when you create the dataset group, or later by using 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 Dataset 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 use the dataset group to create a predictor. To get the status, use the DescribeDatasetGroup operation.

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',
    ],
    Tags=[
        {
            'Key': 'string',
            'Value': 'string'
        },
    ]
)
Parameters
  • DatasetGroupName (string) --

    [REQUIRED]

    A name for the dataset group.

  • Domain (string) --

    [REQUIRED]

    The domain associated with the dataset group. When you add a dataset to a dataset group, this value and the value specified for the Domain parameter of the CreateDataset operation must match.

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

  • DatasetArns (list) --

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

    • (string) --
  • Tags (list) --

    The optional metadata that you apply to the dataset group to help you categorize and organize them. Each tag consists of a key and an optional value, both of which you define.

    The following basic restrictions apply to tags:

    • Maximum number of tags per resource - 50.
    • For each resource, each tag key must be unique, and each tag key can have only one value.
    • Maximum key length - 128 Unicode characters in UTF-8.
    • Maximum value length - 256 Unicode characters in UTF-8.
    • If your tagging schema is used across multiple services and resources, remember that other services may have restrictions on allowed characters. Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, and the following characters: + - = . _ : / @.
    • Tag keys and values are case sensitive.
    • Do not use aws: , AWS: , or any upper or lowercase combination of such as a prefix for keys as it is reserved for Amazon Web Services use. You cannot edit or delete tag keys with this prefix. Values can have this prefix. If a tag value has aws as its prefix but the key does not, then Forecast considers it to be a user tag and will count against the limit of 50 tags. Tags with only the key prefix of aws do not count against your tags per resource limit.
    • (dict) --

      The optional metadata that you apply to a resource to help you categorize and organize them. Each tag consists of a key and an optional value, both of which you define.

      The following basic restrictions apply to tags:

      • Maximum number of tags per resource - 50.
      • For each resource, each tag key must be unique, and each tag key can have only one value.
      • Maximum key length - 128 Unicode characters in UTF-8.
      • Maximum value length - 256 Unicode characters in UTF-8.
      • If your tagging schema is used across multiple services and resources, remember that other services may have restrictions on allowed characters. Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, and the following characters: + - = . _ : / @.
      • Tag keys and values are case sensitive.
      • Do not use aws: , AWS: , or any upper or lowercase combination of such as a prefix for keys as it is reserved for Amazon Web Services use. You cannot edit or delete tag keys with this prefix. Values can have this prefix. If a tag value has aws as its prefix but the key does not, then Forecast considers it to be a user tag and will count against the limit of 50 tags. Tags with only the key prefix of aws do not count against your tags per resource limit.
      • Key (string) -- [REQUIRED]

        One part of a key-value pair that makes up a tag. A key is a general label that acts like a category for more specific tag values.

      • Value (string) -- [REQUIRED]

        The optional part of a key-value pair that makes up a tag. A value acts as a descriptor within a tag category (key).

Return type

dict

Returns

Response Syntax

{
    'DatasetGroupArn': 'string'
}

Response Structure

  • (dict) --

    • DatasetGroupArn (string) --

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

Exceptions

  • ForecastService.Client.exceptions.InvalidInputException
  • ForecastService.Client.exceptions.ResourceAlreadyExistsException
  • ForecastService.Client.exceptions.ResourceNotFoundException
  • ForecastService.Client.exceptions.ResourceInUseException
  • ForecastService.Client.exceptions.LimitExceededException
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 Identity and Access Management (IAM) role that Amazon Forecast can assume to access the data, as Amazon Forecast makes a copy of your data and processes it in an internal Amazon Web Services system. For more information, see Set up permissions.

The training data must be in CSV or Parquet format. The delimiter must be a comma (,).

You can specify the path to a specific file, the S3 bucket, or to a folder in the S3 bucket. For the latter two cases, Amazon Forecast imports all files up to the limit of 10,000 files.

Because dataset imports are not aggregated, your most recent dataset import is the one that is used when training a predictor or generating a forecast. Make sure that your most recent dataset import contains all of the data you want to model off of, and not just the new data collected since the previous import.

To get a list of all your dataset import jobs, filtered by specified criteria, use the ListDatasetImportJobs 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',
    TimeZone='string',
    UseGeolocationForTimeZone=True|False,
    GeolocationFormat='string',
    Tags=[
        {
            'Key': 'string',
            'Value': 'string'
        },
    ],
    Format='string',
    ImportMode='FULL'|'INCREMENTAL'
)
Parameters
  • DatasetImportJobName (string) --

    [REQUIRED]

    The name for the dataset import job. We recommend including the current timestamp in the name, for example, 20190721DatasetImport . This can help you avoid getting a ResourceAlreadyExistsException exception.

  • 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 Identity and Access Management (IAM) role that Amazon Forecast can assume to access the data. The training data must be stored in an Amazon S3 bucket.

    If encryption is used, DataSource must include an Key Management Service (KMS) key and the IAM role must allow Amazon Forecast permission to access the key. The KMS key and IAM role must match those specified in the EncryptionConfig parameter of the CreateDataset operation.

    • S3Config (dict) -- [REQUIRED]

      The path to the 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 Identity and Access Management (IAM) role that Amazon Forecast can assume to access the Amazon S3 bucket or files. If you provide a value for the KMSKeyArn key, the role must allow access to the key.

        Passing a role across Amazon Web Services accounts is not allowed. If you pass a role that isn't in your account, you get an InvalidInputException error.

      • KMSKeyArn (string) --

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

  • TimestampFormat (string) --

    The format of timestamps in the dataset. The format that you specify depends on the DataFrequency specified when the dataset was created. The following formats are supported

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

    If the format isn't specified, Amazon Forecast expects the format to be "yyyy-MM-dd HH:mm:ss".

  • TimeZone (string) --

    A single time zone for every item in your dataset. This option is ideal for datasets with all timestamps within a single time zone, or if all timestamps are normalized to a single time zone.

    Refer to the Joda-Time API for a complete list of valid time zone names.

  • UseGeolocationForTimeZone (boolean) -- Automatically derive time zone information from the geolocation attribute. This option is ideal for datasets that contain timestamps in multiple time zones and those timestamps are expressed in local time.
  • GeolocationFormat (string) --

    The format of the geolocation attribute. The geolocation attribute can be formatted in one of two ways:

    • LAT_LONG - the latitude and longitude in decimal format (Example: 47.61_-122.33).
    • CC_POSTALCODE (US Only) - the country code (US), followed by the 5-digit ZIP code (Example: US_98121).
  • Tags (list) --

    The optional metadata that you apply to the dataset import job to help you categorize and organize them. Each tag consists of a key and an optional value, both of which you define.

    The following basic restrictions apply to tags:

    • Maximum number of tags per resource - 50.
    • For each resource, each tag key must be unique, and each tag key can have only one value.
    • Maximum key length - 128 Unicode characters in UTF-8.
    • Maximum value length - 256 Unicode characters in UTF-8.
    • If your tagging schema is used across multiple services and resources, remember that other services may have restrictions on allowed characters. Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, and the following characters: + - = . _ : / @.
    • Tag keys and values are case sensitive.
    • Do not use aws: , AWS: , or any upper or lowercase combination of such as a prefix for keys as it is reserved for Amazon Web Services use. You cannot edit or delete tag keys with this prefix. Values can have this prefix. If a tag value has aws as its prefix but the key does not, then Forecast considers it to be a user tag and will count against the limit of 50 tags. Tags with only the key prefix of aws do not count against your tags per resource limit.
    • (dict) --

      The optional metadata that you apply to a resource to help you categorize and organize them. Each tag consists of a key and an optional value, both of which you define.

      The following basic restrictions apply to tags:

      • Maximum number of tags per resource - 50.
      • For each resource, each tag key must be unique, and each tag key can have only one value.
      • Maximum key length - 128 Unicode characters in UTF-8.
      • Maximum value length - 256 Unicode characters in UTF-8.
      • If your tagging schema is used across multiple services and resources, remember that other services may have restrictions on allowed characters. Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, and the following characters: + - = . _ : / @.
      • Tag keys and values are case sensitive.
      • Do not use aws: , AWS: , or any upper or lowercase combination of such as a prefix for keys as it is reserved for Amazon Web Services use. You cannot edit or delete tag keys with this prefix. Values can have this prefix. If a tag value has aws as its prefix but the key does not, then Forecast considers it to be a user tag and will count against the limit of 50 tags. Tags with only the key prefix of aws do not count against your tags per resource limit.
      • Key (string) -- [REQUIRED]

        One part of a key-value pair that makes up a tag. A key is a general label that acts like a category for more specific tag values.

      • Value (string) -- [REQUIRED]

        The optional part of a key-value pair that makes up a tag. A value acts as a descriptor within a tag category (key).

  • Format (string) -- The format of the imported data, CSV or PARQUET. The default value is CSV.
  • ImportMode (string) -- Specifies whether the dataset import job is a FULL or INCREMENTAL import. A FULL dataset import replaces all of the existing data with the newly imported data. An INCREMENTAL import appends the imported data to the existing data.
Return type

dict

Returns

Response Syntax

{
    'DatasetImportJobArn': 'string'
}

Response Structure

  • (dict) --

    • DatasetImportJobArn (string) --

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

Exceptions

  • ForecastService.Client.exceptions.InvalidInputException
  • ForecastService.Client.exceptions.ResourceAlreadyExistsException
  • ForecastService.Client.exceptions.ResourceNotFoundException
  • ForecastService.Client.exceptions.ResourceInUseException
  • ForecastService.Client.exceptions.LimitExceededException
create_explainability(**kwargs)

Note

Explainability is only available for Forecasts and Predictors generated from an AutoPredictor ( CreateAutoPredictor )

Creates an Amazon Forecast Explainability.

Explainability helps you better understand how the attributes in your datasets impact forecast. Amazon Forecast uses a metric called Impact scores to quantify the relative impact of each attribute and determine whether they increase or decrease forecast values.

To enable Forecast Explainability, your predictor must include at least one of the following: related time series, item metadata, or additional datasets like Holidays and the Weather Index.

CreateExplainability accepts either a Predictor ARN or Forecast ARN. To receive aggregated Impact scores for all time series and time points in your datasets, provide a Predictor ARN. To receive Impact scores for specific time series and time points, provide a Forecast ARN.

CreateExplainability with a Predictor ARN

Note

You can only have one Explainability resource per predictor. If you already enabled ExplainPredictor in CreateAutoPredictor, that predictor already has an Explainability resource.

The following parameters are required when providing a Predictor ARN:

  • ExplainabilityName - A unique name for the Explainability.
  • ResourceArn - The Arn of the predictor.
  • TimePointGranularity - Must be set to “ALL”.
  • TimeSeriesGranularity - Must be set to “ALL”.

Do not specify a value for the following parameters:

  • DataSource - Only valid when TimeSeriesGranularity is “SPECIFIC”.
  • Schema - Only valid when TimeSeriesGranularity is “SPECIFIC”.
  • StartDateTime - Only valid when TimePointGranularity is “SPECIFIC”.
  • EndDateTime - Only valid when TimePointGranularity is “SPECIFIC”.
CreateExplainability with a Forecast ARN

Note

You can specify a maximum of 50 time series and 500 time points.

The following parameters are required when providing a Predictor ARN:

  • ExplainabilityName - A unique name for the Explainability.
  • ResourceArn - The Arn of the forecast.
  • TimePointGranularity - Either “ALL” or “SPECIFIC”.
  • TimeSeriesGranularity - Either “ALL” or “SPECIFIC”.

If you set TimeSeriesGranularity to “SPECIFIC”, you must also provide the following:

  • DataSource - The S3 location of the CSV file specifying your time series.
  • Schema - The Schema defines the attributes and attribute types listed in the Data Source.

If you set TimePointGranularity to “SPECIFIC”, you must also provide the following:

  • StartDateTime - The first timestamp in the range of time points.
  • EndDateTime - The last timestamp in the range of time points.

See also: AWS API Documentation

Request Syntax

response = client.create_explainability(
    ExplainabilityName='string',
    ResourceArn='string',
    ExplainabilityConfig={
        'TimeSeriesGranularity': 'ALL'|'SPECIFIC',
        'TimePointGranularity': 'ALL'|'SPECIFIC'
    },
    DataSource={
        'S3Config': {
            'Path': 'string',
            'RoleArn': 'string',
            'KMSKeyArn': 'string'
        }
    },
    Schema={
        'Attributes': [
            {
                'AttributeName': 'string',
                'AttributeType': 'string'|'integer'|'float'|'timestamp'|'geolocation'
            },
        ]
    },
    EnableVisualization=True|False,
    StartDateTime='string',
    EndDateTime='string',
    Tags=[
        {
            'Key': 'string',
            'Value': 'string'
        },
    ]
)
Parameters
  • ExplainabilityName (string) --

    [REQUIRED]

    A unique name for the Explainability.

  • ResourceArn (string) --

    [REQUIRED]

    The Amazon Resource Name (ARN) of the Predictor or Forecast used to create the Explainability.

  • ExplainabilityConfig (dict) --

    [REQUIRED]

    The configuration settings that define the granularity of time series and time points for the Explainability.

    • TimeSeriesGranularity (string) -- [REQUIRED]

      To create an Explainability for all time series in your datasets, use ALL . To create an Explainability for specific time series in your datasets, use SPECIFIC .

      Specify time series by uploading a CSV or Parquet file to an Amazon S3 bucket and set the location within the DataDestination data type.

    • TimePointGranularity (string) -- [REQUIRED]

      To create an Explainability for all time points in your forecast horizon, use ALL . To create an Explainability for specific time points in your forecast horizon, use SPECIFIC .

      Specify time points with the StartDateTime and EndDateTime parameters within the CreateExplainability operation.

  • DataSource (dict) --

    The source of your data, an Identity and Access Management (IAM) role that allows Amazon Forecast to access the data and, optionally, an Key Management Service (KMS) key.

    • S3Config (dict) -- [REQUIRED]

      The path to the 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 Identity and Access Management (IAM) role that Amazon Forecast can assume to access the Amazon S3 bucket or files. If you provide a value for the KMSKeyArn key, the role must allow access to the key.

        Passing a role across Amazon Web Services accounts is not allowed. If you pass a role that isn't in your account, you get an InvalidInputException error.

      • KMSKeyArn (string) --

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

  • Schema (dict) --

    Defines the fields of a dataset.

    • 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 dataset field. 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.

          For a related time series dataset, other than date, item_id, and forecast dimensions attributes, all attributes should be of numerical type (integer/float).

  • EnableVisualization (boolean) -- Create an Explainability visualization that is viewable within the Amazon Web Services console.
  • StartDateTime (string) --

    If TimePointGranularity is set to SPECIFIC , define the first point for the Explainability.

    Use the following timestamp format: yyyy-MM-ddTHH:mm:ss (example: 2015-01-01T20:00:00)

  • EndDateTime (string) --

    If TimePointGranularity is set to SPECIFIC , define the last time point for the Explainability.

    Use the following timestamp format: yyyy-MM-ddTHH:mm:ss (example: 2015-01-01T20:00:00)

  • Tags (list) --

    Optional metadata to help you categorize and organize your resources. Each tag consists of a key and an optional value, both of which you define. Tag keys and values are case sensitive.

    The following restrictions apply to tags:

    • For each resource, each tag key must be unique and each tag key must have one value.
    • Maximum number of tags per resource: 50.
    • Maximum key length: 128 Unicode characters in UTF-8.
    • Maximum value length: 256 Unicode characters in UTF-8.
    • Accepted characters: all letters and numbers, spaces representable in UTF-8, and + - = . _ : / @. If your tagging schema is used across other services and resources, the character restrictions of those services also apply.
    • Key prefixes cannot include any upper or lowercase combination of aws: or AWS: . Values can have this prefix. If a tag value has aws as its prefix but the key does not, Forecast considers it to be a user tag and will count against the limit of 50 tags. Tags with only the key prefix of aws do not count against your tags per resource limit. You cannot edit or delete tag keys with this prefix.
    • (dict) --

      The optional metadata that you apply to a resource to help you categorize and organize them. Each tag consists of a key and an optional value, both of which you define.

      The following basic restrictions apply to tags:

      • Maximum number of tags per resource - 50.
      • For each resource, each tag key must be unique, and each tag key can have only one value.
      • Maximum key length - 128 Unicode characters in UTF-8.
      • Maximum value length - 256 Unicode characters in UTF-8.
      • If your tagging schema is used across multiple services and resources, remember that other services may have restrictions on allowed characters. Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, and the following characters: + - = . _ : / @.
      • Tag keys and values are case sensitive.
      • Do not use aws: , AWS: , or any upper or lowercase combination of such as a prefix for keys as it is reserved for Amazon Web Services use. You cannot edit or delete tag keys with this prefix. Values can have this prefix. If a tag value has aws as its prefix but the key does not, then Forecast considers it to be a user tag and will count against the limit of 50 tags. Tags with only the key prefix of aws do not count against your tags per resource limit.
      • Key (string) -- [REQUIRED]

        One part of a key-value pair that makes up a tag. A key is a general label that acts like a category for more specific tag values.

      • Value (string) -- [REQUIRED]

        The optional part of a key-value pair that makes up a tag. A value acts as a descriptor within a tag category (key).

Return type

dict

Returns

Response Syntax

{
    'ExplainabilityArn': 'string'
}

Response Structure

  • (dict) --

    • ExplainabilityArn (string) --

      The Amazon Resource Name (ARN) of the Explainability.

Exceptions

  • ForecastService.Client.exceptions.InvalidInputException
  • ForecastService.Client.exceptions.ResourceAlreadyExistsException
  • ForecastService.Client.exceptions.ResourceNotFoundException
  • ForecastService.Client.exceptions.ResourceInUseException
  • ForecastService.Client.exceptions.LimitExceededException
create_explainability_export(**kwargs)

Exports an Explainability resource created by the CreateExplainability operation. Exported files are exported to an Amazon Simple Storage Service (Amazon S3) bucket.

You must specify a DataDestination object that includes an Amazon S3 bucket and an 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.

Note

The Status of the export job must be ACTIVE before you can access the export in your Amazon S3 bucket. To get the status, use the DescribeExplainabilityExport operation.

See also: AWS API Documentation

Request Syntax

response = client.create_explainability_export(
    ExplainabilityExportName='string',
    ExplainabilityArn='string',
    Destination={
        'S3Config': {
            'Path': 'string',
            'RoleArn': 'string',
            'KMSKeyArn': 'string'
        }
    },
    Tags=[
        {
            'Key': 'string',
            'Value': 'string'
        },
    ],
    Format='string'
)
Parameters
  • ExplainabilityExportName (string) --

    [REQUIRED]

    A unique name for the Explainability export.

  • ExplainabilityArn (string) --

    [REQUIRED]

    The Amazon Resource Name (ARN) of the Explainability to export.

  • Destination (dict) --

    [REQUIRED]

    The destination for an export job. Provide an S3 path, an Identity and Access Management (IAM) role that allows Amazon Forecast to access the location, and an Key Management Service (KMS) key (optional).

    • 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 Identity and Access Management (IAM) role that Amazon Forecast can assume to access the Amazon S3 bucket or files. If you provide a value for the KMSKeyArn key, the role must allow access to the key.

        Passing a role across Amazon Web Services accounts is not allowed. If you pass a role that isn't in your account, you get an InvalidInputException error.

      • KMSKeyArn (string) --

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

  • Tags (list) --

    Optional metadata to help you categorize and organize your resources. Each tag consists of a key and an optional value, both of which you define. Tag keys and values are case sensitive.

    The following restrictions apply to tags:

    • For each resource, each tag key must be unique and each tag key must have one value.
    • Maximum number of tags per resource: 50.
    • Maximum key length: 128 Unicode characters in UTF-8.
    • Maximum value length: 256 Unicode characters in UTF-8.
    • Accepted characters: all letters and numbers, spaces representable in UTF-8, and + - = . _ : / @. If your tagging schema is used across other services and resources, the character restrictions of those services also apply.
    • Key prefixes cannot include any upper or lowercase combination of aws: or AWS: . Values can have this prefix. If a tag value has aws as its prefix but the key does not, Forecast considers it to be a user tag and will count against the limit of 50 tags. Tags with only the key prefix of aws do not count against your tags per resource limit. You cannot edit or delete tag keys with this prefix.
    • (dict) --

      The optional metadata that you apply to a resource to help you categorize and organize them. Each tag consists of a key and an optional value, both of which you define.

      The following basic restrictions apply to tags:

      • Maximum number of tags per resource - 50.
      • For each resource, each tag key must be unique, and each tag key can have only one value.
      • Maximum key length - 128 Unicode characters in UTF-8.
      • Maximum value length - 256 Unicode characters in UTF-8.
      • If your tagging schema is used across multiple services and resources, remember that other services may have restrictions on allowed characters. Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, and the following characters: + - = . _ : / @.
      • Tag keys and values are case sensitive.
      • Do not use aws: , AWS: , or any upper or lowercase combination of such as a prefix for keys as it is reserved for Amazon Web Services use. You cannot edit or delete tag keys with this prefix. Values can have this prefix. If a tag value has aws as its prefix but the key does not, then Forecast considers it to be a user tag and will count against the limit of 50 tags. Tags with only the key prefix of aws do not count against your tags per resource limit.
      • Key (string) -- [REQUIRED]

        One part of a key-value pair that makes up a tag. A key is a general label that acts like a category for more specific tag values.

      • Value (string) -- [REQUIRED]

        The optional part of a key-value pair that makes up a tag. A value acts as a descriptor within a tag category (key).

  • Format (string) -- The format of the exported data, CSV or PARQUET.
Return type

dict

Returns

Response Syntax

{
    'ExplainabilityExportArn': 'string'
}

Response Structure

  • (dict) --

    • ExplainabilityExportArn (string) --

      The Amazon Resource Name (ARN) of the export.

Exceptions

  • ForecastService.Client.exceptions.InvalidInputException
  • ForecastService.Client.exceptions.ResourceAlreadyExistsException
  • ForecastService.Client.exceptions.ResourceNotFoundException
  • ForecastService.Client.exceptions.ResourceInUseException
  • ForecastService.Client.exceptions.LimitExceededException
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) bucket, use the CreateForecastExportJob operation.

The range of the forecast is determined by the ForecastHorizon value, which you specify in the CreatePredictor request. When you query a forecast, you can request a specific date range within the forecast.

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

Note

The forecasts generated by Amazon Forecast are in the same time zone 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.

By default, a forecast includes predictions for every item ( item_id ) in the dataset group that was used to train the predictor. However, you can use the TimeSeriesSelector object to generate a forecast on a subset of time series. Forecast creation is skipped for any time series that you specify that are not in the input dataset. The forecast export file will not contain these time series or their forecasted values.

See also: AWS API Documentation

Request Syntax

response = client.create_forecast(
    ForecastName='string',
    PredictorArn='string',
    ForecastTypes=[
        'string',
    ],
    Tags=[
        {
            'Key': 'string',
            'Value': 'string'
        },
    ],
    TimeSeriesSelector={
        'TimeSeriesIdentifiers': {
            'DataSource': {
                'S3Config': {
                    'Path': 'string',
                    'RoleArn': 'string',
                    'KMSKeyArn': 'string'
                }
            },
            'Schema': {
                'Attributes': [
                    {
                        'AttributeName': 'string',
                        'AttributeType': 'string'|'integer'|'float'|'timestamp'|'geolocation'
                    },
                ]
            },
            'Format': 'string'
        }
    }
)
Parameters
  • ForecastName (string) --

    [REQUIRED]

    A name for the forecast.

  • PredictorArn (string) --

    [REQUIRED]

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

  • ForecastTypes (list) --

    The quantiles at which probabilistic forecasts are generated. You can currently specify up to 5 quantiles per forecast . Accepted values include 0.01 to 0.99 (increments of .01 only) and mean . The mean forecast is different from the median (0.50) when the distribution is not symmetric (for example, Beta and Negative Binomial).

    The default quantiles are the quantiles you specified during predictor creation. If you didn't specify quantiles, the default values are ["0.1", "0.5", "0.9"] .

    • (string) --
  • Tags (list) --

    The optional metadata that you apply to the forecast to help you categorize and organize them. Each tag consists of a key and an optional value, both of which you define.

    The following basic restrictions apply to tags:

    • Maximum number of tags per resource - 50.
    • For each resource, each tag key must be unique, and each tag key can have only one value.
    • Maximum key length - 128 Unicode characters in UTF-8.
    • Maximum value length - 256 Unicode characters in UTF-8.
    • If your tagging schema is used across multiple services and resources, remember that other services may have restrictions on allowed characters. Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, and the following characters: + - = . _ : / @.
    • Tag keys and values are case sensitive.
    • Do not use aws: , AWS: , or any upper or lowercase combination of such as a prefix for keys as it is reserved for Amazon Web Services use. You cannot edit or delete tag keys with this prefix. Values can have this prefix. If a tag value has aws as its prefix but the key does not, then Forecast considers it to be a user tag and will count against the limit of 50 tags. Tags with only the key prefix of aws do not count against your tags per resource limit.
    • (dict) --

      The optional metadata that you apply to a resource to help you categorize and organize them. Each tag consists of a key and an optional value, both of which you define.

      The following basic restrictions apply to tags:

      • Maximum number of tags per resource - 50.
      • For each resource, each tag key must be unique, and each tag key can have only one value.
      • Maximum key length - 128 Unicode characters in UTF-8.
      • Maximum value length - 256 Unicode characters in UTF-8.
      • If your tagging schema is used across multiple services and resources, remember that other services may have restrictions on allowed characters. Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, and the following characters: + - = . _ : / @.
      • Tag keys and values are case sensitive.
      • Do not use aws: , AWS: , or any upper or lowercase combination of such as a prefix for keys as it is reserved for Amazon Web Services use. You cannot edit or delete tag keys with this prefix. Values can have this prefix. If a tag value has aws as its prefix but the key does not, then Forecast considers it to be a user tag and will count against the limit of 50 tags. Tags with only the key prefix of aws do not count against your tags per resource limit.
      • Key (string) -- [REQUIRED]

        One part of a key-value pair that makes up a tag. A key is a general label that acts like a category for more specific tag values.

      • Value (string) -- [REQUIRED]

        The optional part of a key-value pair that makes up a tag. A value acts as a descriptor within a tag category (key).

  • TimeSeriesSelector (dict) --

    Defines the set of time series that are used to create the forecasts in a TimeSeriesIdentifiers object.

    The TimeSeriesIdentifiers object needs the following information:

    • DataSource
    • Format
    • Schema
    • TimeSeriesIdentifiers (dict) --

      Details about the import file that contains the time series for which you want to create forecasts.

      • DataSource (dict) --

        The source of your data, an Identity and Access Management (IAM) role that allows Amazon Forecast to access the data and, optionally, an Key Management Service (KMS) key.

        • S3Config (dict) -- [REQUIRED]

          The path to the 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 Identity and Access Management (IAM) role that Amazon Forecast can assume to access the Amazon S3 bucket or files. If you provide a value for the KMSKeyArn key, the role must allow access to the key.

            Passing a role across Amazon Web Services accounts is not allowed. If you pass a role that isn't in your account, you get an InvalidInputException error.

          • KMSKeyArn (string) --

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

      • Schema (dict) --

        Defines the fields of a dataset.

        • 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 dataset field. 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.

              For a related time series dataset, other than date, item_id, and forecast dimensions attributes, all attributes should be of numerical type (integer/float).

      • Format (string) --

        The format of the data, either CSV or PARQUET.

Return type

dict

Returns

Response Syntax

{
    'ForecastArn': 'string'
}

Response Structure

  • (dict) --

    • ForecastArn (string) --

      The Amazon Resource Name (ARN) of the forecast.

Exceptions

  • ForecastService.Client.exceptions.InvalidInputException
  • ForecastService.Client.exceptions.ResourceAlreadyExistsException
  • ForecastService.Client.exceptions.ResourceNotFoundException
  • ForecastService.Client.exceptions.ResourceInUseException
  • ForecastService.Client.exceptions.LimitExceededException
create_forecast_export_job(**kwargs)

Exports a forecast created by the CreateForecast operation to your Amazon Simple Storage Service (Amazon S3) bucket. The forecast file name will match the following conventions:

<ForecastExportJobName>_<ExportTimestamp>_<PartNumber>

where the <ExportTimestamp> component is in Java SimpleDateFormat (yyyy-MM-ddTHH-mm-ssZ).

You must specify a DataDestination object that includes an 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. To get the status, use the DescribeForecastExportJob operation.

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'
        }
    },
    Tags=[
        {
            'Key': 'string',
            'Value': 'string'
        },
    ],
    Format='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 location where you want to save the forecast and an Identity and Access Management (IAM) role that Amazon Forecast can assume to access the location. The forecast must be exported to an Amazon S3 bucket.

    If encryption is used, Destination must include an Key Management Service (KMS) key. The IAM role must allow Amazon Forecast permission to access the key.

    • 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 Identity and Access Management (IAM) role that Amazon Forecast can assume to access the Amazon S3 bucket or files. If you provide a value for the KMSKeyArn key, the role must allow access to the key.

        Passing a role across Amazon Web Services accounts is not allowed. If you pass a role that isn't in your account, you get an InvalidInputException error.

      • KMSKeyArn (string) --

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

  • Tags (list) --

    The optional metadata that you apply to the forecast export job to help you categorize and organize them. Each tag consists of a key and an optional value, both of which you define.

    The following basic restrictions apply to tags:

    • Maximum number of tags per resource - 50.
    • For each resource, each tag key must be unique, and each tag key can have only one value.
    • Maximum key length - 128 Unicode characters in UTF-8.
    • Maximum value length - 256 Unicode characters in UTF-8.
    • If your tagging schema is used across multiple services and resources, remember that other services may have restrictions on allowed characters. Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, and the following characters: + - = . _ : / @.
    • Tag keys and values are case sensitive.
    • Do not use aws: , AWS: , or any upper or lowercase combination of such as a prefix for keys as it is reserved for Amazon Web Services use. You cannot edit or delete tag keys with this prefix. Values can have this prefix. If a tag value has aws as its prefix but the key does not, then Forecast considers it to be a user tag and will count against the limit of 50 tags. Tags with only the key prefix of aws do not count against your tags per resource limit.
    • (dict) --

      The optional metadata that you apply to a resource to help you categorize and organize them. Each tag consists of a key and an optional value, both of which you define.

      The following basic restrictions apply to tags:

      • Maximum number of tags per resource - 50.
      • For each resource, each tag key must be unique, and each tag key can have only one value.
      • Maximum key length - 128 Unicode characters in UTF-8.
      • Maximum value length - 256 Unicode characters in UTF-8.
      • If your tagging schema is used across multiple services and resources, remember that other services may have restrictions on allowed characters. Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, and the following characters: + - = . _ : / @.
      • Tag keys and values are case sensitive.
      • Do not use aws: , AWS: , or any upper or lowercase combination of such as a prefix for keys as it is reserved for Amazon Web Services use. You cannot edit or delete tag keys with this prefix. Values can have this prefix. If a tag value has aws as its prefix but the key does not, then Forecast considers it to be a user tag and will count against the limit of 50 tags. Tags with only the key prefix of aws do not count against your tags per resource limit.
      • Key (string) -- [REQUIRED]

        One part of a key-value pair that makes up a tag. A key is a general label that acts like a category for more specific tag values.

      • Value (string) -- [REQUIRED]

        The optional part of a key-value pair that makes up a tag. A value acts as a descriptor within a tag category (key).

  • Format (string) -- The format of the exported data, CSV or PARQUET. The default value is CSV.
Return type

dict

Returns

Response Syntax

{
    'ForecastExportJobArn': 'string'
}

Response Structure

  • (dict) --

    • ForecastExportJobArn (string) --

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

Exceptions

  • ForecastService.Client.exceptions.InvalidInputException
  • ForecastService.Client.exceptions.ResourceAlreadyExistsException
  • ForecastService.Client.exceptions.ResourceNotFoundException
  • ForecastService.Client.exceptions.ResourceInUseException
  • ForecastService.Client.exceptions.LimitExceededException
create_monitor(**kwargs)

Creates a predictor monitor resource for an existing auto predictor. Predictor monitoring allows you to see how your predictor's performance changes over time. For more information, see Predictor Monitoring.

See also: AWS API Documentation

Request Syntax

response = client.create_monitor(
    MonitorName='string',
    ResourceArn='string',
    Tags=[
        {
            'Key': 'string',
            'Value': 'string'
        },
    ]
)
Parameters
  • MonitorName (string) --

    [REQUIRED]

    The name of the monitor resource.

  • ResourceArn (string) --

    [REQUIRED]

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

  • Tags (list) --

    A list of tags to apply to the monitor resource.

    • (dict) --

      The optional metadata that you apply to a resource to help you categorize and organize them. Each tag consists of a key and an optional value, both of which you define.

      The following basic restrictions apply to tags:

      • Maximum number of tags per resource - 50.
      • For each resource, each tag key must be unique, and each tag key can have only one value.
      • Maximum key length - 128 Unicode characters in UTF-8.
      • Maximum value length - 256 Unicode characters in UTF-8.
      • If your tagging schema is used across multiple services and resources, remember that other services may have restrictions on allowed characters. Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, and the following characters: + - = . _ : / @.
      • Tag keys and values are case sensitive.
      • Do not use aws: , AWS: , or any upper or lowercase combination of such as a prefix for keys as it is reserved for Amazon Web Services use. You cannot edit or delete tag keys with this prefix. Values can have this prefix. If a tag value has aws as its prefix but the key does not, then Forecast considers it to be a user tag and will count against the limit of 50 tags. Tags with only the key prefix of aws do not count against your tags per resource limit.
      • Key (string) -- [REQUIRED]

        One part of a key-value pair that makes up a tag. A key is a general label that acts like a category for more specific tag values.

      • Value (string) -- [REQUIRED]

        The optional part of a key-value pair that makes up a tag. A value acts as a descriptor within a tag category (key).

Return type

dict

Returns

Response Syntax

{
    'MonitorArn': 'string'
}

Response Structure

  • (dict) --

    • MonitorArn (string) --

      The Amazon Resource Name (ARN) of the monitor resource.

Exceptions

  • ForecastService.Client.exceptions.InvalidInputException
  • ForecastService.Client.exceptions.ResourceAlreadyExistsException
  • ForecastService.Client.exceptions.ResourceNotFoundException
  • ForecastService.Client.exceptions.ResourceInUseException
  • ForecastService.Client.exceptions.LimitExceededException
create_predictor(**kwargs)

Note

This operation creates a legacy predictor that does not include all the predictor functionalities provided by Amazon Forecast. To create a predictor that is compatible with all aspects of Forecast, use CreateAutoPredictor.

Creates an Amazon Forecast predictor.

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

Amazon Forecast uses the algorithm to train a predictor using the latest version of the datasets in the specified dataset group. You can then generate a forecast using the CreateForecast operation.

To see the evaluation metrics, use the GetAccuracyMetrics operation.

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

For RELATED_TIME_SERIES datasets, CreatePredictor verifies that the DataFrequency specified when the dataset was created matches the ForecastFrequency . TARGET_TIME_SERIES datasets don't have this restriction. Amazon Forecast also verifies the delimiter and timestamp format. For more information, see howitworks-datasets-groups.

By default, predictors are trained and evaluated at the 0.1 (P10), 0.5 (P50), and 0.9 (P90) quantiles. You can choose custom forecast types to train and evaluate your predictor by setting the ForecastTypes .

AutoML

If you want Amazon Forecast to evaluate each algorithm and choose the one that minimizes the objective function , set PerformAutoML to true . The objective function is defined as the mean of the weighted losses over the forecast types. By default, these are the 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 of your predictors, use the ListPredictors operation.

Note

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

See also: AWS API Documentation

Request Syntax

response = client.create_predictor(
    PredictorName='string',
    AlgorithmArn='string',
    ForecastHorizon=123,
    ForecastTypes=[
        'string',
    ],
    PerformAutoML=True|False,
    AutoMLOverrideStrategy='LatencyOptimized'|'AccuracyOptimized',
    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'
    },
    Tags=[
        {
            'Key': 'string',
            'Value': 'string'
        },
    ],
    OptimizationMetric='WAPE'|'RMSE'|'AverageWeightedQuantileLoss'|'MASE'|'MAPE'
)
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/CNN-QR
    • arn:aws:forecast:::algorithm/Deep_AR_Plus
    • 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.

    The maximum forecast horizon is the lesser of 500 time-steps or 1/3 of the TARGET_TIME_SERIES dataset length.

  • ForecastTypes (list) --

    Specifies the forecast types used to train a predictor. You can specify up to five forecast types. Forecast types can be quantiles from 0.01 to 0.99, by increments of 0.01 or higher. You can also specify the mean forecast with mean .

    The default value is ["0.10", "0.50", "0.9"] .

    • (string) --
  • PerformAutoML (boolean) --

    Whether to perform AutoML. When Amazon Forecast performs AutoML, it evaluates the algorithms it provides and chooses the best algorithm and configuration for your training dataset.

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

    Set PerformAutoML to true to have Amazon Forecast perform AutoML. This is a good option if you aren't sure which algorithm is suitable for your training data. In this case, PerformHPO must be false.

  • AutoMLOverrideStrategy (string) --

    Note

    The LatencyOptimized AutoML override strategy is only available in private beta. Contact Amazon Web Services Support or your account manager to learn more about access privileges.

    Used to overide the default AutoML strategy, which is to optimize predictor accuracy. To apply an AutoML strategy that minimizes training time, use LatencyOptimized .

    This parameter is only valid for predictors trained using AutoML.

  • 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 running 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, optionally, supply the HyperParameterTuningJobConfig object. The tuning job specifies a metric to optimize, which hyperparameters participate in tuning, and the valid range for each tunable hyperparameter. In this case, you are required to specify an algorithm and PerformAutoML must be false.

    The following algorithms support HPO:

    • DeepAR+
    • CNN-QR
  • TrainingParameters (dict) --

    The hyperparameters to override for model training. The hyperparameters that you can override are listed in the individual algorithms. For the list of supported algorithms, see 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. Valid values are 1 through 5.

    • BackTestWindowOffset (integer) --

      The point from the end of the dataset where you want to split the data for model training and testing (evaluation). Specify the value as the number of data points. The default is the value of the forecast horizon. BackTestWindowOffset can be used to mimic a past virtual forecast start date. This value must be greater than or equal to the forecast horizon and less than half of the TARGET_TIME_SERIES dataset length.

      ForecastHorizon <= BackTestWindowOffset < 1/2 * TARGET_TIME_SERIES dataset length
  • 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.

    If you included the HPOConfig object, you must set PerformHPO to true.

    • 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. Valid 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 values greater than 0.

            ReverseLogarithmic

            hyperparameter 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.

            For information about choosing a hyperparameter scale, see Hyperparameter Scaling. One of the following values:

      • 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. Valid 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 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.

            For information about choosing a hyperparameter scale, see Hyperparameter Scaling. One of the following values:

  • 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. The only supported feature is a holiday calendar.

      • (dict) --

        Note

        This object belongs to the CreatePredictor operation. If you created your predictor with CreateAutoPredictor, see AdditionalDataset.

        Describes a supplementary feature of a dataset group. This object is part of the InputDataConfig object. Forecast supports the Weather Index and Holidays built-in featurizations.

        Weather Index

        The Amazon Forecast Weather Index is a built-in featurization that incorporates historical and projected weather information into your model. The Weather Index supplements your datasets with over two years of historical weather data and up to 14 days of projected weather data. For more information, see Amazon Forecast Weather Index.

        Holidays

        Holidays is a built-in featurization that incorporates a feature-engineered dataset of national holiday information into your model. It provides native support for the holiday calendars of 66 countries. To view the holiday calendars, refer to the Jollyday library. For more information, see Holidays Featurization.

        • Name (string) -- [REQUIRED]

          The name of the feature. Valid values: "holiday" and "weather" .

        • Value (string) -- [REQUIRED]
          Weather Index

          To enable the Weather Index, set the value to "true"

          Holidays

          To enable Holidays, specify a country with one of the following two-letter country codes:

          • "AL" - ALBANIA
          • "AR" - ARGENTINA
          • "AT" - AUSTRIA
          • "AU" - AUSTRALIA
          • "BA" - BOSNIA HERZEGOVINA
          • "BE" - BELGIUM
          • "BG" - BULGARIA
          • "BO" - BOLIVIA
          • "BR" - BRAZIL
          • "BY" - BELARUS
          • "CA" - CANADA
          • "CL" - CHILE
          • "CO" - COLOMBIA
          • "CR" - COSTA RICA
          • "HR" - CROATIA
          • "CZ" - CZECH REPUBLIC
          • "DK" - DENMARK
          • "EC" - ECUADOR
          • "EE" - ESTONIA
          • "ET" - ETHIOPIA
          • "FI" - FINLAND
          • "FR" - FRANCE
          • "DE" - GERMANY
          • "GR" - GREECE
          • "HU" - HUNGARY
          • "IS" - ICELAND
          • "IN" - INDIA
          • "IE" - IRELAND
          • "IT" - ITALY
          • "JP" - JAPAN
          • "KZ" - KAZAKHSTAN
          • "KR" - KOREA
          • "LV" - LATVIA
          • "LI" - LIECHTENSTEIN
          • "LT" - LITHUANIA
          • "LU" - LUXEMBOURG
          • "MK" - MACEDONIA
          • "MT" - MALTA
          • "MX" - MEXICO
          • "MD" - MOLDOVA
          • "ME" - MONTENEGRO
          • "NL" - NETHERLANDS
          • "NZ" - NEW ZEALAND
          • "NI" - NICARAGUA
          • "NG" - NIGERIA
          • "NO" - NORWAY
          • "PA" - PANAMA
          • "PY" - PARAGUAY
          • "PE" - PERU
          • "PL" - POLAND
          • "PT" - PORTUGAL
          • "RO" - ROMANIA
          • "RU" - RUSSIA
          • "RS" - SERBIA
          • "SK" - SLOVAKIA
          • "SI" - SLOVENIA
          • "ZA" - SOUTH AFRICA
          • "ES" - SPAIN
          • "SE" - SWEDEN
          • "CH" - SWITZERLAND
          • "UA" - UKRAINE
          • "AE" - UNITED ARAB EMIRATES
          • "US" - UNITED STATES
          • "UK" - UNITED KINGDOM
          • "UY" - URUGUAY
          • "VE" - VENEZUELA
  • FeaturizationConfig (dict) --

    [REQUIRED]

    The featurization configuration.

    • ForecastFrequency (string) -- [REQUIRED]

      The frequency of predictions in a forecast.

      Valid intervals are an integer followed by Y (Year), M (Month), W (Week), D (Day), H (Hour), and min (Minute). For example, "1D" indicates every day and "15min" indicates every 15 minutes. You cannot specify a value that would overlap with the next larger frequency. That means, for example, you cannot specify a frequency of 60 minutes, because that is equivalent to 1 hour. The valid values for each frequency are the following:

      • Minute - 1-59
      • Hour - 1-23
      • Day - 1-6
      • Week - 1-4
      • Month - 1-11
      • Year - 1

      Thus, if you want every other week forecasts, specify "2W". Or, if you want quarterly forecasts, you specify "3M".

      The frequency must be greater than or equal to the TARGET_TIME_SERIES dataset frequency.

      When a RELATED_TIME_SERIES dataset is provided, the frequency must be equal to the TARGET_TIME_SERIES dataset frequency.

    • 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.

      All forecast dimensions specified in the TARGET_TIME_SERIES dataset don't need to be specified in the CreatePredictor request. All forecast dimensions specified in the RELATED_TIME_SERIES dataset must be specified in the CreatePredictor request.

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

      An array of featurization (transformation) information for the fields of a dataset.

      • (dict) --

        Note

        This object belongs to the CreatePredictor operation. If you created your predictor with CreateAutoPredictor, see AttributeConfig.

        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 that specifies the data field to be featurized. Amazon Forecast supports the target field of the TARGET_TIME_SERIES and the RELATED_TIME_SERIES datasets. For example, for the RETAIL domain, the target is demand , and for the CUSTOM domain, the target is target_value . For more information, see howitworks-missing-values.

        • FeaturizationPipeline (list) --

          An array of one FeaturizationMethod object that specifies the feature transformation method.

          • (dict) --

            Provides information about the method that featurizes (transforms) a dataset field. The method is part of the FeaturizationPipeline of the Featurization object.

            The following is an example of how you specify a FeaturizationMethod object.

            {

            "FeaturizationMethodName": "filling",

            "FeaturizationMethodParameters": {"aggregation": "sum", "middlefill": "zero", "backfill": "zero"}

            }

            • FeaturizationMethodName (string) -- [REQUIRED]

              The name of the method. The "filling" method is the only supported method.

            • FeaturizationMethodParameters (dict) --

              The method parameters (key-value pairs), which are a map of override parameters. Specify these parameters to override the default values. Related Time Series attributes do not accept aggregation parameters.

              The following list shows the parameters and their valid values for the "filling" featurization method for a Target Time Series dataset. Bold signifies the default value.

              • aggregation : sum , avg , first , min , max
              • frontfill : none
              • middlefill : zero , nan (not a number), value , median , mean , min , max
              • backfill : zero , nan , value , median , mean , min , max

              The following list shows the parameters and their valid values for a Related Time Series featurization method (there are no defaults):

              • middlefill : zero , value , median , mean , min , max
              • backfill : zero , value , median , mean , min , max
              • futurefill : zero , value , median , mean , min , max

              To set a filling method to a specific value, set the fill parameter to value and define the value in a corresponding _value parameter. For example, to set backfilling to a value of 2, include the following: "backfill": "value" and "backfill_value":"2" .

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

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

    • RoleArn (string) -- [REQUIRED]

      The ARN of the IAM role that Amazon Forecast can assume to access the KMS key.

      Passing a role across Amazon Web Services accounts is not allowed. If you pass a role that isn't in your account, you get an InvalidInputException error.

    • KMSKeyArn (string) -- [REQUIRED]

      The Amazon Resource Name (ARN) of the KMS key.

  • Tags (list) --

    The optional metadata that you apply to the predictor to help you categorize and organize them. Each tag consists of a key and an optional value, both of which you define.

    The following basic restrictions apply to tags:

    • Maximum number of tags per resource - 50.
    • For each resource, each tag key must be unique, and each tag key can have only one value.
    • Maximum key length - 128 Unicode characters in UTF-8.
    • Maximum value length - 256 Unicode characters in UTF-8.
    • If your tagging schema is used across multiple services and resources, remember that other services may have restrictions on allowed characters. Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, and the following characters: + - = . _ : / @.
    • Tag keys and values are case sensitive.
    • Do not use aws: , AWS: , or any upper or lowercase combination of such as a prefix for keys as it is reserved for Amazon Web Services use. You cannot edit or delete tag keys with this prefix. Values can have this prefix. If a tag value has aws as its prefix but the key does not, then Forecast considers it to be a user tag and will count against the limit of 50 tags. Tags with only the key prefix of aws do not count against your tags per resource limit.
    • (dict) --

      The optional metadata that you apply to a resource to help you categorize and organize them. Each tag consists of a key and an optional value, both of which you define.

      The following basic restrictions apply to tags:

      • Maximum number of tags per resource - 50.
      • For each resource, each tag key must be unique, and each tag key can have only one value.
      • Maximum key length - 128 Unicode characters in UTF-8.
      • Maximum value length - 256 Unicode characters in UTF-8.
      • If your tagging schema is used across multiple services and resources, remember that other services may have restrictions on allowed characters. Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, and the following characters: + - = . _ : / @.
      • Tag keys and values are case sensitive.
      • Do not use aws: , AWS: , or any upper or lowercase combination of such as a prefix for keys as it is reserved for Amazon Web Services use. You cannot edit or delete tag keys with this prefix. Values can have this prefix. If a tag value has aws as its prefix but the key does not, then Forecast considers it to be a user tag and will count against the limit of 50 tags. Tags with only the key prefix of aws do not count against your tags per resource limit.
      • Key (string) -- [REQUIRED]

        One part of a key-value pair that makes up a tag. A key is a general label that acts like a category for more specific tag values.

      • Value (string) -- [REQUIRED]

        The optional part of a key-value pair that makes up a tag. A value acts as a descriptor within a tag category (key).

  • OptimizationMetric (string) -- The accuracy metric used to optimize the predictor.
Return type

dict

Returns

Response Syntax

{
    'PredictorArn': 'string'
}

Response Structure

  • (dict) --

    • PredictorArn (string) --

      The Amazon Resource Name (ARN) of the predictor.

Exceptions

  • ForecastService.Client.exceptions.InvalidInputException
  • ForecastService.Client.exceptions.ResourceAlreadyExistsException
  • ForecastService.Client.exceptions.ResourceNotFoundException
  • ForecastService.Client.exceptions.ResourceInUseException
  • ForecastService.Client.exceptions.LimitExceededException
create_predictor_backtest_export_job(**kwargs)

Exports backtest forecasts and accuracy metrics generated by the CreateAutoPredictor or CreatePredictor operations. Two folders containing CSV or Parquet files are exported to your specified S3 bucket.

The export file names will match the following conventions:

<ExportJobName>_<ExportTimestamp>_<PartNumber>.csv

The <ExportTimestamp> component is in Java SimpleDate format (yyyy-MM-ddTHH-mm-ssZ).

You must specify a DataDestination object that includes an Amazon S3 bucket and an 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.

Note

The Status of the export job must be ACTIVE before you can access the export in your Amazon S3 bucket. To get the status, use the DescribePredictorBacktestExportJob operation.

See also: AWS API Documentation

Request Syntax

response = client.create_predictor_backtest_export_job(
    PredictorBacktestExportJobName='string',
    PredictorArn='string',
    Destination={
        'S3Config': {
            'Path': 'string',
            'RoleArn': 'string',
            'KMSKeyArn': 'string'
        }
    },
    Tags=[
        {
            'Key': 'string',
            'Value': 'string'
        },
    ],
    Format='string'
)
Parameters
  • PredictorBacktestExportJobName (string) --

    [REQUIRED]

    The name for the backtest export job.

  • PredictorArn (string) --

    [REQUIRED]

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

  • Destination (dict) --

    [REQUIRED]

    The destination for an export job. Provide an S3 path, an Identity and Access Management (IAM) role that allows Amazon Forecast to access the location, and an Key Management Service (KMS) key (optional).

    • 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 Identity and Access Management (IAM) role that Amazon Forecast can assume to access the Amazon S3 bucket or files. If you provide a value for the KMSKeyArn key, the role must allow access to the key.

        Passing a role across Amazon Web Services accounts is not allowed. If you pass a role that isn't in your account, you get an InvalidInputException error.

      • KMSKeyArn (string) --

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

  • Tags (list) --

    Optional metadata to help you categorize and organize your backtests. Each tag consists of a key and an optional value, both of which you define. Tag keys and values are case sensitive.

    The following restrictions apply to tags:

    • For each resource, each tag key must be unique and each tag key must have one value.
    • Maximum number of tags per resource: 50.
    • Maximum key length: 128 Unicode characters in UTF-8.
    • Maximum value length: 256 Unicode characters in UTF-8.
    • Accepted characters: all letters and numbers, spaces representable in UTF-8, and + - = . _ : / @. If your tagging schema is used across other services and resources, the character restrictions of those services also apply.
    • Key prefixes cannot include any upper or lowercase combination of aws: or AWS: . Values can have this prefix. If a tag value has aws as its prefix but the key does not, Forecast considers it to be a user tag and will count against the limit of 50 tags. Tags with only the key prefix of aws do not count against your tags per resource limit. You cannot edit or delete tag keys with this prefix.
    • (dict) --

      The optional metadata that you apply to a resource to help you categorize and organize them. Each tag consists of a key and an optional value, both of which you define.

      The following basic restrictions apply to tags:

      • Maximum number of tags per resource - 50.
      • For each resource, each tag key must be unique, and each tag key can have only one value.
      • Maximum key length - 128 Unicode characters in UTF-8.
      • Maximum value length - 256 Unicode characters in UTF-8.
      • If your tagging schema is used across multiple services and resources, remember that other services may have restrictions on allowed characters. Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, and the following characters: + - = . _ : / @.
      • Tag keys and values are case sensitive.
      • Do not use aws: , AWS: , or any upper or lowercase combination of such as a prefix for keys as it is reserved for Amazon Web Services use. You cannot edit or delete tag keys with this prefix. Values can have this prefix. If a tag value has aws as its prefix but the key does not, then Forecast considers it to be a user tag and will count against the limit of 50 tags. Tags with only the key prefix of aws do not count against your tags per resource limit.
      • Key (string) -- [REQUIRED]

        One part of a key-value pair that makes up a tag. A key is a general label that acts like a category for more specific tag values.

      • Value (string) -- [REQUIRED]

        The optional part of a key-value pair that makes up a tag. A value acts as a descriptor within a tag category (key).

  • Format (string) -- The format of the exported data, CSV or PARQUET. The default value is CSV.
Return type

dict

Returns

Response Syntax

{
    'PredictorBacktestExportJobArn': 'string'
}

Response Structure

  • (dict) --

    • PredictorBacktestExportJobArn (string) --

      The Amazon Resource Name (ARN) of the predictor backtest export job that you want to export.

Exceptions

  • ForecastService.Client.exceptions.InvalidInputException
  • ForecastService.Client.exceptions.ResourceAlreadyExistsException
  • ForecastService.Client.exceptions.ResourceNotFoundException
  • ForecastService.Client.exceptions.ResourceInUseException
  • ForecastService.Client.exceptions.LimitExceededException
create_what_if_analysis(**kwargs)

What-if analysis is a scenario modeling technique where you make a hypothetical change to a time series and compare the forecasts generated by these changes against the baseline, unchanged time series. It is important to remember that the purpose of a what-if analysis is to understand how a forecast can change given different modifications to the baseline time series.

For example, imagine you are a clothing retailer who is considering an end of season sale to clear space for new styles. After creating a baseline forecast, you can use a what-if analysis to investigate how different sales tactics might affect your goals.

You could create a scenario where everything is given a 25% markdown, and another where everything is given a fixed dollar markdown. You could create a scenario where the sale lasts for one week and another where the sale lasts for one month. With a what-if analysis, you can compare many different scenarios against each other.

Note that a what-if analysis is meant to display what the forecasting model has learned and how it will behave in the scenarios that you are evaluating. Do not blindly use the results of the what-if analysis to make business decisions. For instance, forecasts might not be accurate for novel scenarios where there is no reference available to determine whether a forecast is good.

The TimeSeriesSelector object defines the items that you want in the what-if analysis.

See also: AWS API Documentation

Request Syntax

response = client.create_what_if_analysis(
    WhatIfAnalysisName='string',
    ForecastArn='string',
    TimeSeriesSelector={
        'TimeSeriesIdentifiers': {
            'DataSource': {
                'S3Config': {
                    'Path': 'string',
                    'RoleArn': 'string',
                    'KMSKeyArn': 'string'
                }
            },
            'Schema': {
                'Attributes': [
                    {
                        'AttributeName': 'string',
                        'AttributeType': 'string'|'integer'|'float'|'timestamp'|'geolocation'
                    },
                ]
            },
            'Format': 'string'
        }
    },
    Tags=[
        {
            'Key': 'string',
            'Value': 'string'
        },
    ]
)
Parameters
  • WhatIfAnalysisName (string) --

    [REQUIRED]

    The name of the what-if analysis. Each name must be unique.

  • ForecastArn (string) --

    [REQUIRED]

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

  • TimeSeriesSelector (dict) --

    Defines the set of time series that are used in the what-if analysis with a TimeSeriesIdentifiers object. What-if analyses are performed only for the time series in this object.

    The TimeSeriesIdentifiers object needs the following information:

    • DataSource
    • Format
    • Schema
    • TimeSeriesIdentifiers (dict) --

      Details about the import file that contains the time series for which you want to create forecasts.

      • DataSource (dict) --

        The source of your data, an Identity and Access Management (IAM) role that allows Amazon Forecast to access the data and, optionally, an Key Management Service (KMS) key.

        • S3Config (dict) -- [REQUIRED]

          The path to the 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 Identity and Access Management (IAM) role that Amazon Forecast can assume to access the Amazon S3 bucket or files. If you provide a value for the KMSKeyArn key, the role must allow access to the key.

            Passing a role across Amazon Web Services accounts is not allowed. If you pass a role that isn't in your account, you get an InvalidInputException error.

          • KMSKeyArn (string) --

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

      • Schema (dict) --

        Defines the fields of a dataset.

        • 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 dataset field. 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.

              For a related time series dataset, other than date, item_id, and forecast dimensions attributes, all attributes should be of numerical type (integer/float).

      • Format (string) --

        The format of the data, either CSV or PARQUET.

  • Tags (list) --

    A list of tags to apply to the what if forecast.

    • (dict) --

      The optional metadata that you apply to a resource to help you categorize and organize them. Each tag consists of a key and an optional value, both of which you define.

      The following basic restrictions apply to tags:

      • Maximum number of tags per resource - 50.
      • For each resource, each tag key must be unique, and each tag key can have only one value.
      • Maximum key length - 128 Unicode characters in UTF-8.
      • Maximum value length - 256 Unicode characters in UTF-8.
      • If your tagging schema is used across multiple services and resources, remember that other services may have restrictions on allowed characters. Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, and the following characters: + - = . _ : / @.
      • Tag keys and values are case sensitive.
      • Do not use aws: , AWS: , or any upper or lowercase combination of such as a prefix for keys as it is reserved for Amazon Web Services use. You cannot edit or delete tag keys with this prefix. Values can have this prefix. If a tag value has aws as its prefix but the key does not, then Forecast considers it to be a user tag and will count against the limit of 50 tags. Tags with only the key prefix of aws do not count against your tags per resource limit.
      • Key (string) -- [REQUIRED]

        One part of a key-value pair that makes up a tag. A key is a general label that acts like a category for more specific tag values.

      • Value (string) -- [REQUIRED]

        The optional part of a key-value pair that makes up a tag. A value acts as a descriptor within a tag category (key).

Return type

dict

Returns

Response Syntax

{
    'WhatIfAnalysisArn': 'string'
}

Response Structure

  • (dict) --

    • WhatIfAnalysisArn (string) --

      The Amazon Resource Name (ARN) of the what-if analysis.

Exceptions

  • ForecastService.Client.exceptions.InvalidInputException
  • ForecastService.Client.exceptions.ResourceAlreadyExistsException
  • ForecastService.Client.exceptions.ResourceNotFoundException
  • ForecastService.Client.exceptions.ResourceInUseException
  • ForecastService.Client.exceptions.LimitExceededException
create_what_if_forecast(**kwargs)

A what-if forecast is a forecast that is created from a modified version of the baseline forecast. Each what-if forecast incorporates either a replacement dataset or a set of transformations to the original dataset.

See also: AWS API Documentation

Request Syntax

response = client.create_what_if_forecast(
    WhatIfForecastName='string',
    WhatIfAnalysisArn='string',
    TimeSeriesTransformations=[
        {
            'Action': {
                'AttributeName': 'string',
                'Operation': 'ADD'|'SUBTRACT'|'MULTIPLY'|'DIVIDE',
                'Value': 123.0
            },
            'TimeSeriesConditions': [
                {
                    'AttributeName': 'string',
                    'AttributeValue': 'string',
                    'Condition': 'EQUALS'|'NOT_EQUALS'|'LESS_THAN'|'GREATER_THAN'
                },
            ]
        },
    ],
    TimeSeriesReplacementsDataSource={
        'S3Config': {
            'Path': 'string',
            'RoleArn': 'string',
            'KMSKeyArn': 'string'
        },
        'Schema': {
            'Attributes': [
                {
                    'AttributeName': 'string',
                    'AttributeType': 'string'|'integer'|'float'|'timestamp'|'geolocation'
                },
            ]
        },
        'Format': 'string',
        'TimestampFormat': 'string'
    },
    Tags=[
        {
            'Key': 'string',
            'Value': 'string'
        },
    ]
)
Parameters
  • WhatIfForecastName (string) --

    [REQUIRED]

    The name of the what-if forecast. Names must be unique within each what-if analysis.

  • WhatIfAnalysisArn (string) --

    [REQUIRED]

    The Amazon Resource Name (ARN) of the what-if analysis.

  • TimeSeriesTransformations (list) --

    The transformations that are applied to the baseline time series. Each transformation contains an action and a set of conditions. An action is applied only when all conditions are met. If no conditions are provided, the action is applied to all items.

    • (dict) --

      A transformation function is a pair of operations that select and modify the rows in a related time series. You select the rows that you want with a condition operation and you modify the rows with a transformation operation. All conditions are joined with an AND operation, meaning that all conditions must be true for the transformation to be applied. Transformations are applied in the order that they are listed.

      • Action (dict) --

        An array of actions that define a time series and how it is transformed. These transformations create a new time series that is used for the what-if analysis.

        • AttributeName (string) -- [REQUIRED]

          The related time series that you are modifying. This value is case insensitive.

        • Operation (string) -- [REQUIRED]

          The operation that is applied to the provided attribute. Operations include:

          • ADD - adds Value to all rows of AttributeName .
          • SUBTRACT - subtracts Value from all rows of AttributeName .
          • MULTIPLY - multiplies all rows of AttributeName by Value .
          • DIVIDE - divides all rows of AttributeName by Value .
        • Value (float) -- [REQUIRED]

          The value that is applied for the chosen Operation .

      • TimeSeriesConditions (list) --

        An array of conditions that define which members of the related time series are transformed.

        • (dict) --

          Creates a subset of items within an attribute that are modified. For example, you can use this operation to create a subset of items that cost $5 or less. To do this, you specify "AttributeName": "price" , "AttributeValue": "5" , and "Condition": "LESS_THAN" . Pair this operation with the Action operation within the CreateWhatIfForecastRequest$TimeSeriesTransformations operation to define how the attribute is modified.

          • AttributeName (string) -- [REQUIRED]

            The item_id, dimension name, IM name, or timestamp that you are modifying.

          • AttributeValue (string) -- [REQUIRED]

            The value that is applied for the chosen Condition .

          • Condition (string) -- [REQUIRED]

            The condition to apply. Valid values are EQUALS , NOT_EQUALS , LESS_THAN and GREATER_THAN .

  • TimeSeriesReplacementsDataSource (dict) --

    The replacement time series dataset, which contains the rows that you want to change in the related time series dataset. A replacement time series does not need to contain all rows that are in the baseline related time series. Include only the rows (measure-dimension combinations) that you want to include in the what-if forecast.

    This dataset is merged with the original time series to create a transformed dataset that is used for the what-if analysis.

    This dataset should contain the items to modify (such as item_id or workforce_type), any relevant dimensions, the timestamp column, and at least one of the related time series columns. This file should not contain duplicate timestamps for the same time series.

    Timestamps and item_ids not included in this dataset are not included in the what-if analysis.

    • S3Config (dict) -- [REQUIRED]

      The path to the file(s) in an Amazon Simple Storage Service (Amazon S3) bucket, and an Identity and Access Management (IAM) role that Amazon Forecast can assume to access the file(s). Optionally, includes an Key Management Service (KMS) key. This object is part of the DataSource object that is submitted in the CreateDatasetImportJob request, and part of the DataDestination object.

      • 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 Identity and Access Management (IAM) role that Amazon Forecast can assume to access the Amazon S3 bucket or files. If you provide a value for the KMSKeyArn key, the role must allow access to the key.

        Passing a role across Amazon Web Services accounts is not allowed. If you pass a role that isn't in your account, you get an InvalidInputException error.

      • KMSKeyArn (string) --

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

    • Schema (dict) -- [REQUIRED]

      Defines the fields of a dataset.

      • 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 dataset field. 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.

            For a related time series dataset, other than date, item_id, and forecast dimensions attributes, all attributes should be of numerical type (integer/float).

    • Format (string) --

      The format of the replacement data, CSV or PARQUET.

    • TimestampFormat (string) --

      The timestamp format of the replacement data.

  • Tags (list) --

    A list of tags to apply to the what if forecast.

    • (dict) --

      The optional metadata that you apply to a resource to help you categorize and organize them. Each tag consists of a key and an optional value, both of which you define.

      The following basic restrictions apply to tags:

      • Maximum number of tags per resource - 50.
      • For each resource, each tag key must be unique, and each tag key can have only one value.
      • Maximum key length - 128 Unicode characters in UTF-8.
      • Maximum value length - 256 Unicode characters in UTF-8.
      • If your tagging schema is used across multiple services and resources, remember that other services may have restrictions on allowed characters. Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, and the following characters: + - = . _ : / @.
      • Tag keys and values are case sensitive.
      • Do not use aws: , AWS: , or any upper or lowercase combination of such as a prefix for keys as it is reserved for Amazon Web Services use. You cannot edit or delete tag keys with this prefix. Values can have this prefix. If a tag value has aws as its prefix but the key does not, then Forecast considers it to be a user tag and will count against the limit of 50 tags. Tags with only the key prefix of aws do not count against your tags per resource limit.
      • Key (string) -- [REQUIRED]

        One part of a key-value pair that makes up a tag. A key is a general label that acts like a category for more specific tag values.

      • Value (string) -- [REQUIRED]

        The optional part of a key-value pair that makes up a tag. A value acts as a descriptor within a tag category (key).

Return type

dict

Returns

Response Syntax

{
    'WhatIfForecastArn': 'string'
}

Response Structure

  • (dict) --

    • WhatIfForecastArn (string) --

      The Amazon Resource Name (ARN) of the what-if forecast.

Exceptions

  • ForecastService.Client.exceptions.InvalidInputException
  • ForecastService.Client.exceptions.ResourceAlreadyExistsException
  • ForecastService.Client.exceptions.ResourceNotFoundException
  • ForecastService.Client.exceptions.ResourceInUseException
  • ForecastService.Client.exceptions.LimitExceededException
create_what_if_forecast_export(**kwargs)

Exports a forecast created by the CreateWhatIfForecast operation to your Amazon Simple Storage Service (Amazon S3) bucket. The forecast file name will match the following conventions:

≈<ForecastExportJobName>_<ExportTimestamp>_<PartNumber>

The <ExportTimestamp> component is in Java SimpleDateFormat (yyyy-MM-ddTHH-mm-ssZ).

You must specify a DataDestination object that includes an 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 what-if forecast export jobs, use the ListWhatIfForecastExports operation.

Note

The Status of the forecast export job must be ACTIVE before you can access the forecast in your Amazon S3 bucket. To get the status, use the DescribeWhatIfForecastExport operation.

See also: AWS API Documentation

Request Syntax

response = client.create_what_if_forecast_export(
    WhatIfForecastExportName='string',
    WhatIfForecastArns=[
        'string',
    ],
    Destination={
        'S3Config': {
            'Path': 'string',
            'RoleArn': 'string',
            'KMSKeyArn': 'string'
        }
    },
    Tags=[
        {
            'Key': 'string',
            'Value': 'string'
        },
    ],
    Format='string'
)
Parameters
  • WhatIfForecastExportName (string) --

    [REQUIRED]

    The name of the what-if forecast to export.

  • WhatIfForecastArns (list) --

    [REQUIRED]

    The list of what-if forecast Amazon Resource Names (ARNs) to export.

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

    [REQUIRED]

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

    If encryption is used, Destination must include an Key Management Service (KMS) key. The IAM role must allow Amazon Forecast permission to access the key.

    • 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 Identity and Access Management (IAM) role that Amazon Forecast can assume to access the Amazon S3 bucket or files. If you provide a value for the KMSKeyArn key, the role must allow access to the key.

        Passing a role across Amazon Web Services accounts is not allowed. If you pass a role that isn't in your account, you get an InvalidInputException error.

      • KMSKeyArn (string) --

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

  • Tags (list) --

    A list of tags to apply to the what if forecast.

    • (dict) --

      The optional metadata that you apply to a resource to help you categorize and organize them. Each tag consists of a key and an optional value, both of which you define.

      The following basic restrictions apply to tags:

      • Maximum number of tags per resource - 50.
      • For each resource, each tag key must be unique, and each tag key can have only one value.
      • Maximum key length - 128 Unicode characters in UTF-8.
      • Maximum value length - 256 Unicode characters in UTF-8.
      • If your tagging schema is used across multiple services and resources, remember that other services may have restrictions on allowed characters. Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, and the following characters: + - = . _ : / @.
      • Tag keys and values are case sensitive.
      • Do not use aws: , AWS: , or any upper or lowercase combination of such as a prefix for keys as it is reserved for Amazon Web Services use. You cannot edit or delete tag keys with this prefix. Values can have this prefix. If a tag value has aws as its prefix but the key does not, then Forecast considers it to be a user tag and will count against the limit of 50 tags. Tags with only the key prefix of aws do not count against your tags per resource limit.
      • Key (string) -- [REQUIRED]

        One part of a key-value pair that makes up a tag. A key is a general label that acts like a category for more specific tag values.

      • Value (string) -- [REQUIRED]

        The optional part of a key-value pair that makes up a tag. A value acts as a descriptor within a tag category (key).

  • Format (string) -- The format of the exported data, CSV or PARQUET.
Return type

dict

Returns

Response Syntax

{
    'WhatIfForecastExportArn': 'string'
}

Response Structure

  • (dict) --

    • WhatIfForecastExportArn (string) --

      The Amazon Resource Name (ARN) of the what-if forecast.

Exceptions

  • ForecastService.Client.exceptions.InvalidInputException
  • ForecastService.Client.exceptions.ResourceAlreadyExistsException
  • ForecastService.Client.exceptions.ResourceNotFoundException
  • ForecastService.Client.exceptions.ResourceInUseException
  • ForecastService.Client.exceptions.LimitExceededException
delete_dataset(**kwargs)

Deletes an Amazon Forecast dataset that was created using the CreateDataset operation. You can only delete datasets that have a status of ACTIVE or CREATE_FAILED . To get the status use the DescribeDataset operation.

Note

Forecast does not automatically update any dataset groups that contain the deleted dataset. In order to update the dataset group, use the UpdateDatasetGroup operation, omitting the deleted dataset's ARN.

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

Exceptions

  • ForecastService.Client.exceptions.InvalidInputException
  • ForecastService.Client.exceptions.ResourceNotFoundException
  • ForecastService.Client.exceptions.ResourceInUseException
delete_dataset_group(**kwargs)

Deletes a dataset group created using the CreateDatasetGroup operation. You can only delete dataset groups that have a status of ACTIVE , CREATE_FAILED , or UPDATE_FAILED . To get the status, use the DescribeDatasetGroup operation.

This 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

Exceptions

  • ForecastService.Client.exceptions.InvalidInputException
  • ForecastService.Client.exceptions.ResourceNotFoundException
  • ForecastService.Client.exceptions.ResourceInUseException
delete_dataset_import_job(**kwargs)

Deletes a dataset import job created using the CreateDatasetImportJob operation. You can delete only dataset import jobs that have a status of ACTIVE or CREATE_FAILED . To get the status, use the DescribeDatasetImportJob operation.

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

Exceptions

  • ForecastService.Client.exceptions.InvalidInputException
  • ForecastService.Client.exceptions.ResourceNotFoundException
  • ForecastService.Client.exceptions.ResourceInUseException
delete_explainability(**kwargs)

Deletes an Explainability resource.

You can delete only predictor that have a status of ACTIVE or CREATE_FAILED . To get the status, use the DescribeExplainability operation.

See also: AWS API Documentation

Request Syntax

response = client.delete_explainability(
    ExplainabilityArn='string'
)
Parameters
ExplainabilityArn (string) --

[REQUIRED]

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

Returns
None

Exceptions

  • ForecastService.Client.exceptions.InvalidInputException
  • ForecastService.Client.exceptions.ResourceNotFoundException
  • ForecastService.Client.exceptions.ResourceInUseException
delete_explainability_export(**kwargs)

Deletes an Explainability export.

See also: AWS API Documentation

Request Syntax

response = client.delete_explainability_export(
    ExplainabilityExportArn='string'
)
Parameters
ExplainabilityExportArn (string) --

[REQUIRED]

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

Returns
None

Exceptions

  • ForecastService.Client.exceptions.InvalidInputException
  • ForecastService.Client.exceptions.ResourceNotFoundException
  • ForecastService.Client.exceptions.ResourceInUseException
delete_forecast(**kwargs)

Deletes a forecast created using the CreateForecast operation. You can delete only forecasts that have a status of ACTIVE or CREATE_FAILED . To get the status, use the DescribeForecast operation.

You can't delete a forecast while it is being exported. After a forecast is deleted, you can no longer query the forecast.

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

Exceptions

  • ForecastService.Client.exceptions.InvalidInputException
  • ForecastService.Client.exceptions.ResourceNotFoundException
  • ForecastService.Client.exceptions.ResourceInUseException
delete_forecast_export_job(**kwargs)

Deletes a forecast export job created using the CreateForecastExportJob operation. You can delete only export jobs that have a status of ACTIVE or CREATE_FAILED . To get the status, use the DescribeForecastExportJob operation.

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

Exceptions

  • ForecastService.Client.exceptions.InvalidInputException
  • ForecastService.Client.exceptions.ResourceNotFoundException
  • ForecastService.Client.exceptions.ResourceInUseException
delete_monitor(**kwargs)

Deletes a monitor resource. You can only delete a monitor resource with a status of ACTIVE , ACTIVE_STOPPED , CREATE_FAILED , or CREATE_STOPPED .

See also: AWS API Documentation

Request Syntax

response = client.delete_monitor(
    MonitorArn='string'
)
Parameters
MonitorArn (string) --

[REQUIRED]

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

Returns
None

Exceptions

  • ForecastService.Client.exceptions.InvalidInputException
  • ForecastService.Client.exceptions.ResourceNotFoundException
  • ForecastService.Client.exceptions.ResourceInUseException
delete_predictor(**kwargs)

Deletes a predictor created using the DescribePredictor or CreatePredictor operations. You can delete only predictor that have a status of ACTIVE or CREATE_FAILED . To get the status, use the DescribePredictor operation.

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

Exceptions

  • ForecastService.Client.exceptions.InvalidInputException
  • ForecastService.Client.exceptions.ResourceNotFoundException
  • ForecastService.Client.exceptions.ResourceInUseException
delete_predictor_backtest_export_job(**kwargs)

Deletes a predictor backtest export job.

See also: AWS API Documentation

Request Syntax

response = client.delete_predictor_backtest_export_job(
    PredictorBacktestExportJobArn='string'
)
Parameters
PredictorBacktestExportJobArn (string) --

[REQUIRED]

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

Returns
None

Exceptions

  • ForecastService.Client.exceptions.InvalidInputException
  • ForecastService.Client.exceptions.ResourceNotFoundException
  • ForecastService.Client.exceptions.ResourceInUseException
delete_resource_tree(**kwargs)

Deletes an entire resource tree. This operation will delete the parent resource and its child resources.

Child resources are resources that were created from another resource. For example, when a forecast is generated from a predictor, the forecast is the child resource and the predictor is the parent resource.

Amazon Forecast resources possess the following parent-child resource hierarchies:

  • Dataset : dataset import jobs
  • Dataset Group : predictors, predictor backtest export jobs, forecasts, forecast export jobs
  • Predictor : predictor backtest export jobs, forecasts, forecast export jobs
  • Forecast : forecast export jobs

Note

DeleteResourceTree will only delete Amazon Forecast resources, and will not delete datasets or exported files stored in Amazon S3.

See also: AWS API Documentation

Request Syntax

response = client.delete_resource_tree(
    ResourceArn='string'
)
Parameters
ResourceArn (string) --

[REQUIRED]

The Amazon Resource Name (ARN) of the parent resource to delete. All child resources of the parent resource will also be deleted.

Returns
None

Exceptions

  • ForecastService.Client.exceptions.InvalidInputException
  • ForecastService.Client.exceptions.ResourceNotFoundException
  • ForecastService.Client.exceptions.ResourceInUseException
delete_what_if_analysis(**kwargs)

Deletes a what-if analysis created using the CreateWhatIfAnalysis operation. You can delete only what-if analyses that have a status of ACTIVE or CREATE_FAILED . To get the status, use the DescribeWhatIfAnalysis operation.

You can't delete a what-if analysis while any of its forecasts are being exported.

See also: AWS API Documentation

Request Syntax

response = client.delete_what_if_analysis(
    WhatIfAnalysisArn='string'
)
Parameters
WhatIfAnalysisArn (string) --

[REQUIRED]

The Amazon Resource Name (ARN) of the what-if analysis that you want to delete.

Returns
None

Exceptions

  • ForecastService.Client.exceptions.InvalidInputException
  • ForecastService.Client.exceptions.ResourceNotFoundException
  • ForecastService.Client.exceptions.ResourceInUseException
delete_what_if_forecast(**kwargs)

Deletes a what-if forecast created using the CreateWhatIfForecast operation. You can delete only what-if forecasts that have a status of ACTIVE or CREATE_FAILED . To get the status, use the DescribeWhatIfForecast operation.

You can't delete a what-if forecast while it is being exported. After a what-if forecast is deleted, you can no longer query the what-if analysis.

See also: AWS API Documentation

Request Syntax

response = client.delete_what_if_forecast(
    WhatIfForecastArn='string'
)
Parameters
WhatIfForecastArn (string) --

[REQUIRED]

The Amazon Resource Name (ARN) of the what-if forecast that you want to delete.

Returns
None

Exceptions

  • ForecastService.Client.exceptions.InvalidInputException
  • ForecastService.Client.exceptions.ResourceNotFoundException
  • ForecastService.Client.exceptions.ResourceInUseException
delete_what_if_forecast_export(**kwargs)

Deletes a what-if forecast export created using the CreateWhatIfForecastExport operation. You can delete only what-if forecast exports that have a status of ACTIVE or CREATE_FAILED . To get the status, use the DescribeWhatIfForecastExport operation.

See also: AWS API Documentation

Request Syntax

response = client.delete_what_if_forecast_export(
    WhatIfForecastExportArn='string'
)
Parameters
WhatIfForecastExportArn (string) --

[REQUIRED]

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

Returns
None

Exceptions

  • ForecastService.Client.exceptions.InvalidInputException
  • ForecastService.Client.exceptions.ResourceNotFoundException
  • ForecastService.Client.exceptions.ResourceInUseException
describe_auto_predictor(**kwargs)

Describes a predictor created using the CreateAutoPredictor operation.

See also: AWS API Documentation

Request Syntax

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

[REQUIRED]

The Amazon Resource Name (ARN) of the predictor.

Return type
dict
Returns
Response Syntax
{
    'PredictorArn': 'string',
    'PredictorName': 'string',
    'ForecastHorizon': 123,
    'ForecastTypes': [
        'string',
    ],
    'ForecastFrequency': 'string',
    'ForecastDimensions': [
        'string',
    ],
    'DatasetImportJobArns': [
        'string',
    ],
    'DataConfig': {
        'DatasetGroupArn': 'string',
        'AttributeConfigs': [
            {
                'AttributeName': 'string',
                'Transformations': {
                    'string': 'string'
                }
            },
        ],
        'AdditionalDatasets': [
            {
                'Name': 'string',
                'Configuration': {
                    'string': [
                        'string',
                    ]
                }
            },
        ]
    },
    'EncryptionConfig': {
        'RoleArn': 'string',
        'KMSKeyArn': 'string'
    },
    'ReferencePredictorSummary': {
        'Arn': 'string',
        'State': 'Active'|'Deleted'
    },
    'EstimatedTimeRemainingInMinutes': 123,
    'Status': 'string',
    'Message': 'string',
    'CreationTime': datetime(2015, 1, 1),
    'LastModificationTime': datetime(2015, 1, 1),
    'OptimizationMetric': 'WAPE'|'RMSE'|'AverageWeightedQuantileLoss'|'MASE'|'MAPE',
    'ExplainabilityInfo': {
        'ExplainabilityArn': 'string',
        'Status': 'string'
    },
    'MonitorInfo': {
        'MonitorArn': 'string',
        'Status': 'string'
    },
    'TimeAlignmentBoundary': {
        'Month': 'JANUARY'|'FEBRUARY'|'MARCH'|'APRIL'|'MAY'|'JUNE'|'JULY'|'AUGUST'|'SEPTEMBER'|'OCTOBER'|'NOVEMBER'|'DECEMBER',
        'DayOfMonth': 123,
        'DayOfWeek': 'MONDAY'|'TUESDAY'|'WEDNESDAY'|'THURSDAY'|'FRIDAY'|'SATURDAY'|'SUNDAY',
        'Hour': 123
    }
}

Response Structure

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

      The Amazon Resource Name (ARN) of the predictor

    • PredictorName (string) --

      The name of the predictor.

    • ForecastHorizon (integer) --

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

    • ForecastTypes (list) --

      The forecast types used during predictor training. Default value is ["0.1","0.5","0.9"].

      • (string) --
    • 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 the attributes used to group your time series.

      • (string) --
    • DatasetImportJobArns (list) --

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

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

      The data configuration for your dataset group and any additional datasets.

      • DatasetGroupArn (string) --

        The ARN of the dataset group used to train the predictor.

      • AttributeConfigs (list) --

        Aggregation and filling options for attributes in your dataset group.

        • (dict) --

          Provides information about the method used to transform attributes.

          The following is an example using the RETAIL domain:

          {

          "AttributeName": "demand",

          "Transformations": {"aggregation": "sum", "middlefill": "zero", "backfill": "zero"}

          }

          • AttributeName (string) --

            The name of the attribute as specified in the schema. Amazon Forecast supports the target field of the target time series and the related time series datasets. For example, for the RETAIL domain, the target is demand .

          • Transformations (dict) --

            The method parameters (key-value pairs), which are a map of override parameters. Specify these parameters to override the default values. Related Time Series attributes do not accept aggregation parameters.

            The following list shows the parameters and their valid values for the "filling" featurization method for a Target Time Series dataset. Default values are bolded.

            • aggregation : sum , avg , first , min , max
            • frontfill : none
            • middlefill : zero , nan (not a number), value , median , mean , min , max
            • backfill : zero , nan , value , median , mean , min , max

            The following list shows the parameters and their valid values for a Related Time Series featurization method (there are no defaults):

            • middlefill : zero , value , median , mean , min , max
            • backfill : zero , value , median , mean , min , max
            • futurefill : zero , value , median , mean , min , max

            To set a filling method to a specific value, set the fill parameter to value and define the value in a corresponding _value parameter. For example, to set backfilling to a value of 2, include the following: "backfill": "value" and "backfill_value":"2" .

            • (string) --
              • (string) --
      • AdditionalDatasets (list) --

        Additional built-in datasets like Holidays and the Weather Index.

        • (dict) --

          Describes an additional dataset. This object is part of the DataConfig object. Forecast supports the Weather Index and Holidays additional datasets.

          Weather Index

          The Amazon Forecast Weather Index is a built-in dataset that incorporates historical and projected weather information into your model. The Weather Index supplements your datasets with over two years of historical weather data and up to 14 days of projected weather data. For more information, see Amazon Forecast Weather Index.

          Holidays

          Holidays is a built-in dataset that incorporates national holiday information into your model. It provides native support for the holiday calendars of 66 countries. To view the holiday calendars, refer to the Jollyday library. For more information, see Holidays Featurization.

          • Name (string) --

            The name of the additional dataset. Valid names: "holiday" and "weather" .

          • Configuration (dict) --
            Weather Index

            To enable the Weather Index, do not specify a value for Configuration .

            Holidays

            Holidays

            To enable Holidays, set CountryCode to one of the following two-letter country codes:

            • "AL" - ALBANIA
            • "AR" - ARGENTINA
            • "AT" - AUSTRIA
            • "AU" - AUSTRALIA
            • "BA" - BOSNIA HERZEGOVINA
            • "BE" - BELGIUM
            • "BG" - BULGARIA
            • "BO" - BOLIVIA
            • "BR" - BRAZIL
            • "BY" - BELARUS
            • "CA" - CANADA
            • "CL" - CHILE
            • "CO" - COLOMBIA
            • "CR" - COSTA RICA
            • "HR" - CROATIA
            • "CZ" - CZECH REPUBLIC
            • "DK" - DENMARK
            • "EC" - ECUADOR
            • "EE" - ESTONIA
            • "ET" - ETHIOPIA
            • "FI" - FINLAND
            • "FR" - FRANCE
            • "DE" - GERMANY
            • "GR" - GREECE
            • "HU" - HUNGARY
            • "IS" - ICELAND
            • "IN" - INDIA
            • "IE" - IRELAND
            • "IT" - ITALY
            • "JP" - JAPAN
            • "KZ" - KAZAKHSTAN
            • "KR" - KOREA
            • "LV" - LATVIA
            • "LI" - LIECHTENSTEIN
            • "LT" - LITHUANIA
            • "LU" - LUXEMBOURG
            • "MK" - MACEDONIA
            • "MT" - MALTA
            • "MX" - MEXICO
            • "MD" - MOLDOVA
            • "ME" - MONTENEGRO
            • "NL" - NETHERLANDS
            • "NZ" - NEW ZEALAND
            • "NI" - NICARAGUA
            • "NG" - NIGERIA
            • "NO" - NORWAY
            • "PA" - PANAMA
            • "PY" - PARAGUAY
            • "PE" - PERU
            • "PL" - POLAND
            • "PT" - PORTUGAL
            • "RO" - ROMANIA
            • "RU" - RUSSIA
            • "RS" - SERBIA
            • "SK" - SLOVAKIA
            • "SI" - SLOVENIA
            • "ZA" - SOUTH AFRICA
            • "ES" - SPAIN
            • "SE" - SWEDEN
            • "CH" - SWITZERLAND
            • "UA" - UKRAINE
            • "AE" - UNITED ARAB EMIRATES
            • "US" - UNITED STATES
            • "UK" - UNITED KINGDOM
            • "UY" - URUGUAY
            • "VE" - VENEZUELA
            • (string) --
              • (list) --
                • (string) --
    • EncryptionConfig (dict) --

      An Key Management Service (KMS) key and an Identity and Access Management (IAM) role that Amazon Forecast can assume to access the key. You can specify this optional object in the CreateDataset and CreatePredictor requests.

      • RoleArn (string) --

        The ARN of the IAM role that Amazon Forecast can assume to access the KMS key.

        Passing a role across Amazon Web Services accounts is not allowed. If you pass a role that isn't in your account, you get an InvalidInputException error.

      • KMSKeyArn (string) --

        The Amazon Resource Name (ARN) of the KMS key.

    • ReferencePredictorSummary (dict) --

      The ARN and state of the reference predictor. This parameter is only valid for retrained or upgraded predictors.

      • Arn (string) --

        The ARN of the reference predictor.

      • State (string) --

        Whether the reference predictor is Active or Deleted .

    • EstimatedTimeRemainingInMinutes (integer) --

      The estimated time remaining in minutes for the predictor training job to complete.

    • Status (string) --

      The status of the predictor. States include:

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

      In the event of an error, a message detailing the cause of the error.

    • CreationTime (datetime) --

      The timestamp of the CreateAutoPredictor request.

    • LastModificationTime (datetime) --

      The last time the resource was modified. The timestamp depends on the status of the job:

      • CREATE_PENDING - The CreationTime .
      • CREATE_IN_PROGRESS - The current timestamp.
      • CREATE_STOPPING - The current timestamp.
      • CREATE_STOPPED - When the job stopped.
      • ACTIVE or CREATE_FAILED - When the job finished or failed.
    • OptimizationMetric (string) --

      The accuracy metric used to optimize the predictor.

    • ExplainabilityInfo (dict) --

      Provides the status and ARN of the Predictor Explainability.

      • ExplainabilityArn (string) --

        The Amazon Resource Name (ARN) of the Explainability.

      • Status (string) --

        The status of the Explainability. States include:

        • ACTIVE
        • CREATE_PENDING , CREATE_IN_PROGRESS , CREATE_FAILED
        • CREATE_STOPPING , CREATE_STOPPED
        • DELETE_PENDING , DELETE_IN_PROGRESS , DELETE_FAILED
    • MonitorInfo (dict) --

      A object with the Amazon Resource Name (ARN) and status of the monitor resource.

      • MonitorArn (string) --

        The Amazon Resource Name (ARN) of the monitor resource.

      • Status (string) --

        The status of the monitor. States include:

        • ACTIVE
        • ACTIVE_STOPPING , ACTIVE_STOPPED
        • UPDATE_IN_PROGRESS
        • CREATE_PENDING , CREATE_IN_PROGRESS , CREATE_FAILED
        • DELETE_PENDING , DELETE_IN_PROGRESS , DELETE_FAILED
    • TimeAlignmentBoundary (dict) --

      The time boundary Forecast uses when aggregating data.

      • Month (string) --

        The month to use for time alignment during aggregation. The month must be in uppercase.

      • DayOfMonth (integer) --

        The day of the month to use for time alignment during aggregation.

      • DayOfWeek (string) --

        The day of week to use for time alignment during aggregation. The day must be in uppercase.

      • Hour (integer) --

        The hour of day to use for time alignment during aggregation.

Exceptions

  • ForecastService.Client.exceptions.InvalidInputException
  • ForecastService.Client.exceptions.ResourceNotFoundException
describe_dataset(**kwargs)

Describes an Amazon Forecast dataset created using the CreateDataset operation.

In addition to listing the parameters specified in the CreateDataset request, this operation includes the following dataset 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'|'geolocation'
            },
        ]
    },
    '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 domain associated with the dataset.

    • 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 dataset field. 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.

            For a related time series dataset, other than date, item_id, and forecast dimensions attributes, all attributes should be of numerical type (integer/float).

    • EncryptionConfig (dict) --

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

      • RoleArn (string) --

        The ARN of the IAM role that Amazon Forecast can assume to access the KMS key.

        Passing a role across Amazon Web Services accounts is not allowed. If you pass a role that isn't in your account, you get an InvalidInputException error.

      • KMSKeyArn (string) --

        The Amazon Resource Name (ARN) of the 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 and reflect 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 you create a dataset, LastModificationTime is the same as CreationTime . While data is being imported to the dataset, LastModificationTime is the current time of the DescribeDataset call. After a CreateDatasetImportJob operation has finished, LastModificationTime is when the import job completed or failed.

Exceptions

  • ForecastService.Client.exceptions.InvalidInputException
  • ForecastService.Client.exceptions.ResourceNotFoundException
describe_dataset_group(**kwargs)

Describes a dataset group created using the CreateDatasetGroup operation.

In addition to listing the parameters provided 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.

    • 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 you call the UpdateDatasetGroup operation.

      Note

      The Status of the dataset group must be ACTIVE before you can use the dataset group to create a predictor.

    • 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 time of the DescribeDatasetGroup call.

Exceptions

  • ForecastService.Client.exceptions.InvalidInputException
  • ForecastService.Client.exceptions.ResourceNotFoundException
describe_dataset_import_job(**kwargs)

Describes a dataset import job created using the CreateDatasetImportJob operation.

In addition to listing the parameters provided 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',
    'TimeZone': 'string',
    'UseGeolocationForTimeZone': True|False,
    'GeolocationFormat': 'string',
    'DataSource': {
        'S3Config': {
            'Path': 'string',
            'RoleArn': 'string',
            'KMSKeyArn': 'string'
        }
    },
    'EstimatedTimeRemainingInMinutes': 123,
    'FieldStatistics': {
        'string': {
            'Count': 123,
            'CountDistinct': 123,
            'CountNull': 123,
            'CountNan': 123,
            'Min': 'string',
            'Max': 'string',
            'Avg': 123.0,
            'Stddev': 123.0,
            'CountLong': 123,
            'CountDistinctLong': 123,
            'CountNullLong': 123,
            'CountNanLong': 123
        }
    },
    'DataSize': 123.0,
    'Status': 'string',
    'Message': 'string',
    'CreationTime': datetime(2015, 1, 1),
    'LastModificationTime': datetime(2015, 1, 1),
    'Format': 'string',
    'ImportMode': 'FULL'|'INCREMENTAL'
}

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. The format that you specify depends on the DataFrequency specified when the dataset was created. The following formats are supported

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

      The single time zone applied to every item in the dataset

    • UseGeolocationForTimeZone (boolean) --

      Whether TimeZone is automatically derived from the geolocation attribute.

    • GeolocationFormat (string) --

      The format of the geolocation attribute. Valid Values: "LAT_LONG" and "CC_POSTALCODE" .

    • DataSource (dict) --

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

      If encryption is used, DataSource includes an Key Management Service (KMS) key.

      • S3Config (dict) --

        The path to the 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 Identity and Access Management (IAM) role that Amazon Forecast can assume to access the Amazon S3 bucket or files. If you provide a value for the KMSKeyArn key, the role must allow access to the key.

          Passing a role across Amazon Web Services accounts is not allowed. If you pass a role that isn't in your account, you get an InvalidInputException error.

        • KMSKeyArn (string) --

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

    • EstimatedTimeRemainingInMinutes (integer) --

      The estimated time remaining in minutes for the dataset import job to complete.

    • FieldStatistics (dict) --

      Statistical information about each field in the input data.

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

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

          • Count (integer) --

            The number of values in the field. If the response value is -1, refer to CountLong .

          • CountDistinct (integer) --

            The number of distinct values in the field. If the response value is -1, refer to CountDistinctLong .

          • CountNull (integer) --

            The number of null values in the field. If the response value is -1, refer to CountNullLong .

          • CountNan (integer) --

            The number of NAN (not a number) values in the field. If the response value is -1, refer to CountNanLong .

          • 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.

          • CountLong (integer) --

            The number of values in the field. CountLong is used instead of Count if the value is greater than 2,147,483,647.

          • CountDistinctLong (integer) --

            The number of distinct values in the field. CountDistinctLong is used instead of CountDistinct if the value is greater than 2,147,483,647.

          • CountNullLong (integer) --

            The number of null values in the field. CountNullLong is used instead of CountNull if the value is greater than 2,147,483,647.

          • CountNanLong (integer) --

            The number of NAN (not a number) values in the field. CountNanLong is used instead of CountNan if the value is greater than 2,147,483,647.

    • DataSize (float) --

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

    • Status (string) --

      The status of the dataset import job. States include:

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

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

    • CreationTime (datetime) --

      When the dataset import job was created.

    • LastModificationTime (datetime) --

      The last time the resource was modified. The timestamp depends on the status of the job:

      • CREATE_PENDING - The CreationTime .
      • CREATE_IN_PROGRESS - The current timestamp.
      • CREATE_STOPPING - The current timestamp.
      • CREATE_STOPPED - When the job stopped.
      • ACTIVE or CREATE_FAILED - When the job finished or failed.
    • Format (string) --

      The format of the imported data, CSV or PARQUET.

    • ImportMode (string) --

      The import mode of the dataset import job, FULL or INCREMENTAL.

Exceptions

  • ForecastService.Client.exceptions.InvalidInputException
  • ForecastService.Client.exceptions.ResourceNotFoundException
describe_explainability(**kwargs)

Describes an Explainability resource created using the CreateExplainability operation.

See also: AWS API Documentation

Request Syntax

response = client.describe_explainability(
    ExplainabilityArn='string'
)
Parameters
ExplainabilityArn (string) --

[REQUIRED]

The Amazon Resource Name (ARN) of the Explaianability to describe.

Return type
dict
Returns
Response Syntax
{
    'ExplainabilityArn': 'string',
    'ExplainabilityName': 'string',
    'ResourceArn': 'string',
    'ExplainabilityConfig': {
        'TimeSeriesGranularity': 'ALL'|'SPECIFIC',
        'TimePointGranularity': 'ALL'|'SPECIFIC'
    },
    'EnableVisualization': True|False,
    'DataSource': {
        'S3Config': {
            'Path': 'string',
            'RoleArn': 'string',
            'KMSKeyArn': 'string'
        }
    },
    'Schema': {
        'Attributes': [
            {
                'AttributeName': 'string',
                'AttributeType': 'string'|'integer'|'float'|'timestamp'|'geolocation'
            },
        ]
    },
    'StartDateTime': 'string',
    'EndDateTime': 'string',
    'EstimatedTimeRemainingInMinutes': 123,
    'Message': 'string',
    'Status': 'string',
    'CreationTime': datetime(2015, 1, 1),
    'LastModificationTime': datetime(2015, 1, 1)
}

Response Structure

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

      The Amazon Resource Name (ARN) of the Explainability.

    • ExplainabilityName (string) --

      The name of the Explainability.

    • ResourceArn (string) --

      The Amazon Resource Name (ARN) of the Predictor or Forecast used to create the Explainability resource.

    • ExplainabilityConfig (dict) --

      The configuration settings that define the granularity of time series and time points for the Explainability.

      • TimeSeriesGranularity (string) --

        To create an Explainability for all time series in your datasets, use ALL . To create an Explainability for specific time series in your datasets, use SPECIFIC .

        Specify time series by uploading a CSV or Parquet file to an Amazon S3 bucket and set the location within the DataDestination data type.

      • TimePointGranularity (string) --

        To create an Explainability for all time points in your forecast horizon, use ALL . To create an Explainability for specific time points in your forecast horizon, use SPECIFIC .

        Specify time points with the StartDateTime and EndDateTime parameters within the CreateExplainability operation.

    • EnableVisualization (boolean) --

      Whether the visualization was enabled for the Explainability resource.

    • DataSource (dict) --

      The source of your data, an Identity and Access Management (IAM) role that allows Amazon Forecast to access the data and, optionally, an Key Management Service (KMS) key.

      • S3Config (dict) --

        The path to the 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 Identity and Access Management (IAM) role that Amazon Forecast can assume to access the Amazon S3 bucket or files. If you provide a value for the KMSKeyArn key, the role must allow access to the key.

          Passing a role across Amazon Web Services accounts is not allowed. If you pass a role that isn't in your account, you get an InvalidInputException error.

        • KMSKeyArn (string) --

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

    • Schema (dict) --

      Defines the fields of a dataset.

      • 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 dataset field. 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.

            For a related time series dataset, other than date, item_id, and forecast dimensions attributes, all attributes should be of numerical type (integer/float).

    • StartDateTime (string) --

      If TimePointGranularity is set to SPECIFIC , the first time point in the Explainability.

    • EndDateTime (string) --

      If TimePointGranularity is set to SPECIFIC , the last time point in the Explainability.

    • EstimatedTimeRemainingInMinutes (integer) --

      The estimated time remaining in minutes for the CreateExplainability job to complete.

    • Message (string) --

      If an error occurred, a message about the error.

    • Status (string) --

      The status of the Explainability resource. States include:

      • ACTIVE
      • CREATE_PENDING , CREATE_IN_PROGRESS , CREATE_FAILED
      • CREATE_STOPPING , CREATE_STOPPED
      • DELETE_PENDING , DELETE_IN_PROGRESS , DELETE_FAILED
    • CreationTime (datetime) --

      When the Explainability resource was created.

    • LastModificationTime (datetime) --

      The last time the resource was modified. The timestamp depends on the status of the job:

      • CREATE_PENDING - The CreationTime .
      • CREATE_IN_PROGRESS - The current timestamp.
      • CREATE_STOPPING - The current timestamp.
      • CREATE_STOPPED - When the job stopped.
      • ACTIVE or CREATE_FAILED - When the job finished or failed.

Exceptions

  • ForecastService.Client.exceptions.InvalidInputException
  • ForecastService.Client.exceptions.ResourceNotFoundException
describe_explainability_export(**kwargs)

Describes an Explainability export created using the CreateExplainabilityExport operation.

See also: AWS API Documentation

Request Syntax

response = client.describe_explainability_export(
    ExplainabilityExportArn='string'
)
Parameters
ExplainabilityExportArn (string) --

[REQUIRED]

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

Return type
dict
Returns
Response Syntax
{
    'ExplainabilityExportArn': 'string',
    'ExplainabilityExportName': 'string',
    'ExplainabilityArn': 'string',
    'Destination': {
        'S3Config': {
            'Path': 'string',
            'RoleArn': 'string',
            'KMSKeyArn': 'string'
        }
    },
    'Message': 'string',
    'Status': 'string',
    'CreationTime': datetime(2015, 1, 1),
    'LastModificationTime': datetime(2015, 1, 1),
    'Format': 'string'
}

Response Structure

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

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

    • ExplainabilityExportName (string) --

      The name of the Explainability export.

    • ExplainabilityArn (string) --

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

    • Destination (dict) --

      The destination for an export job. Provide an S3 path, an Identity and Access Management (IAM) role that allows Amazon Forecast to access the location, and an Key Management Service (KMS) key (optional).

      • 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 Identity and Access Management (IAM) role that Amazon Forecast can assume to access the Amazon S3 bucket or files. If you provide a value for the KMSKeyArn key, the role must allow access to the key.

          Passing a role across Amazon Web Services accounts is not allowed. If you pass a role that isn't in your account, you get an InvalidInputException error.

        • KMSKeyArn (string) --

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

    • Message (string) --

      Information about any errors that occurred during the export.

    • Status (string) --

      The status of the Explainability export. States include:

      • ACTIVE
      • CREATE_PENDING , CREATE_IN_PROGRESS , CREATE_FAILED
      • CREATE_STOPPING , CREATE_STOPPED
      • DELETE_PENDING , DELETE_IN_PROGRESS , DELETE_FAILED
    • CreationTime (datetime) --

      When the Explainability export was created.

    • LastModificationTime (datetime) --

      The last time the resource was modified. The timestamp depends on the status of the job:

      • CREATE_PENDING - The CreationTime .
      • CREATE_IN_PROGRESS - The current timestamp.
      • CREATE_STOPPING - The current timestamp.
      • CREATE_STOPPED - When the job stopped.
      • ACTIVE or CREATE_FAILED - When the job finished or failed.
    • Format (string) --

      The format of the exported data, CSV or PARQUET.

Exceptions

  • ForecastService.Client.exceptions.InvalidInputException
  • ForecastService.Client.exceptions.ResourceNotFoundException
describe_forecast(**kwargs)

Describes a forecast created using the CreateForecast operation.

In addition to listing the properties provided in the CreateForecast request, this operation lists 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',
    'ForecastTypes': [
        'string',
    ],
    'PredictorArn': 'string',
    'DatasetGroupArn': 'string',
    'EstimatedTimeRemainingInMinutes': 123,
    'Status': 'string',
    'Message': 'string',
    'CreationTime': datetime(2015, 1, 1),
    'LastModificationTime': datetime(2015, 1, 1),
    'TimeSeriesSelector': {
        'TimeSeriesIdentifiers': {
            'DataSource': {
                'S3Config': {
                    'Path': 'string',
                    'RoleArn': 'string',
                    'KMSKeyArn': 'string'
                }
            },
            'Schema': {
                'Attributes': [
                    {
                        'AttributeName': 'string',
                        'AttributeType': 'string'|'integer'|'float'|'timestamp'|'geolocation'
                    },
                ]
            },
            'Format': 'string'
        }
    }
}

Response Structure

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

      The forecast ARN as specified in the request.

    • ForecastName (string) --

      The name of the forecast.

    • ForecastTypes (list) --

      The quantiles at which probabilistic forecasts were generated.

      • (string) --
    • 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.

    • EstimatedTimeRemainingInMinutes (integer) --

      The estimated time remaining in minutes for the forecast job to complete.

    • Status (string) --

      The status of the forecast. States include:

      • ACTIVE
      • CREATE_PENDING , CREATE_IN_PROGRESS , CREATE_FAILED
      • CREATE_STOPPING , CREATE_STOPPED
      • 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) --

      The last time the resource was modified. The timestamp depends on the status of the job:

      • CREATE_PENDING - The CreationTime .
      • CREATE_IN_PROGRESS - The current timestamp.
      • CREATE_STOPPING - The current timestamp.
      • CREATE_STOPPED - When the job stopped.
      • ACTIVE or CREATE_FAILED - When the job finished or failed.
    • TimeSeriesSelector (dict) --

      The time series to include in the forecast.

      • TimeSeriesIdentifiers (dict) --

        Details about the import file that contains the time series for which you want to create forecasts.

        • DataSource (dict) --

          The source of your data, an Identity and Access Management (IAM) role that allows Amazon Forecast to access the data and, optionally, an Key Management Service (KMS) key.

          • S3Config (dict) --

            The path to the 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 Identity and Access Management (IAM) role that Amazon Forecast can assume to access the Amazon S3 bucket or files. If you provide a value for the KMSKeyArn key, the role must allow access to the key.

              Passing a role across Amazon Web Services accounts is not allowed. If you pass a role that isn't in your account, you get an InvalidInputException error.

            • KMSKeyArn (string) --

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

        • Schema (dict) --

          Defines the fields of a dataset.

          • 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 dataset field. 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.

                For a related time series dataset, other than date, item_id, and forecast dimensions attributes, all attributes should be of numerical type (integer/float).

        • Format (string) --

          The format of the data, either CSV or PARQUET.

Exceptions

  • ForecastService.Client.exceptions.InvalidInputException
  • ForecastService.Client.exceptions.ResourceNotFoundException
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 lists 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),
    'Format': 'string'
}

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 Amazon Simple Storage Service (Amazon 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 Identity and Access Management (IAM) role that Amazon Forecast can assume to access the Amazon S3 bucket or files. If you provide a value for the KMSKeyArn key, the role must allow access to the key.

          Passing a role across Amazon Web Services accounts is not allowed. If you pass a role that isn't in your account, you get an InvalidInputException error.

        • KMSKeyArn (string) --

          The Amazon Resource Name (ARN) of an 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. States include:

      • ACTIVE
      • CREATE_PENDING , CREATE_IN_PROGRESS , CREATE_FAILED
      • CREATE_STOPPING , CREATE_STOPPED
      • 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 S3 bucket.

    • CreationTime (datetime) --

      When the forecast export job was created.

    • LastModificationTime (datetime) --

      The last time the resource was modified. The timestamp depends on the status of the job:

      • CREATE_PENDING - The CreationTime .
      • CREATE_IN_PROGRESS - The current timestamp.
      • CREATE_STOPPING - The current timestamp.
      • CREATE_STOPPED - When the job stopped.
      • ACTIVE or CREATE_FAILED - When the job finished or failed.
    • Format (string) --

      The format of the exported data, CSV or PARQUET.

Exceptions

  • ForecastService.Client.exceptions.InvalidInputException
  • ForecastService.Client.exceptions.ResourceNotFoundException
describe_monitor(**kwargs)

Describes a monitor resource. In addition to listing the properties provided in the CreateMonitor request, this operation lists the following properties:

  • Baseline
  • CreationTime
  • LastEvaluationTime
  • LastEvaluationState
  • LastModificationTime
  • Message
  • Status

See also: AWS API Documentation

Request Syntax

response = client.describe_monitor(
    MonitorArn='string'
)
Parameters
MonitorArn (string) --

[REQUIRED]

The Amazon Resource Name (ARN) of the monitor resource to describe.

Return type
dict
Returns
Response Syntax
{
    'MonitorName': 'string',
    'MonitorArn': 'string',
    'ResourceArn': 'string',
    'Status': 'string',
    'LastEvaluationTime': datetime(2015, 1, 1),
    'LastEvaluationState': 'string',
    'Baseline': {
        'PredictorBaseline': {
            'BaselineMetrics': [
                {
                    'Name': 'string',
                    'Value': 123.0
                },
            ]
        }
    },
    'Message': 'string',
    'CreationTime': datetime(2015, 1, 1),
    'LastModificationTime': datetime(2015, 1, 1),
    'EstimatedEvaluationTimeRemainingInMinutes': 123
}

Response Structure

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

      The name of the monitor.

    • MonitorArn (string) --

      The Amazon Resource Name (ARN) of the monitor resource described.

    • ResourceArn (string) --

      The Amazon Resource Name (ARN) of the auto predictor being monitored.

    • Status (string) --

      The status of the monitor resource.

    • LastEvaluationTime (datetime) --

      The timestamp of the latest evaluation completed by the monitor.

    • LastEvaluationState (string) --

      The state of the monitor's latest evaluation.

    • Baseline (dict) --

      Metrics you can use as a baseline for comparison purposes. Use these values you interpret monitoring results for an auto predictor.

      • PredictorBaseline (dict) --

        The initial accuracy metrics for the predictor you are monitoring. Use these metrics as a baseline for comparison purposes as you use your predictor and the metrics change.

        • BaselineMetrics (list) --

          The initial accuracy metrics for the predictor. Use these metrics as a baseline for comparison purposes as you use your predictor and the metrics change.

          • (dict) --

            An individual metric that you can use for comparison as you evaluate your monitoring results.

            • Name (string) --

              The name of the metric.

            • Value (float) --

              The value for the metric.

    • Message (string) --

      An error message, if any, for the monitor.

    • CreationTime (datetime) --

      The timestamp for when the monitor resource was created.

    • LastModificationTime (datetime) --

      The timestamp of the latest modification to the monitor.

    • EstimatedEvaluationTimeRemainingInMinutes (integer) --

      The estimated number of minutes remaining before the monitor resource finishes its current evaluation.

Exceptions

  • ForecastService.Client.exceptions.InvalidInputException
  • ForecastService.Client.exceptions.ResourceNotFoundException
describe_predictor(**kwargs)

Note

This operation is only valid for legacy predictors created with CreatePredictor. If you are not using a legacy predictor, use DescribeAutoPredictor.

Describes a predictor created using the CreatePredictor operation.

In addition to listing the properties provided in the CreatePredictor request, this operation lists the following properties:

  • DatasetImportJobArns - The dataset import jobs used to import training data.
  • AutoMLAlgorithmArns - If AutoML is performed, the algorithms that were 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',
    'AutoMLAlgorithmArns': [
        'string',
    ],
    'ForecastHorizon': 123,
    'ForecastTypes': [
        'string',
    ],
    'PerformAutoML': True|False,
    'AutoMLOverrideStrategy': 'LatencyOptimized'|'AccuracyOptimized',
    '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'
    },
    'PredictorExecutionDetails': {
        'PredictorExecutions': [
            {
                'AlgorithmArn': 'string',
                'TestWindows': [
                    {
                        'TestWindowStart': datetime(2015, 1, 1),
                        'TestWindowEnd': datetime(2015, 1, 1),
                        'Status': 'string',
                        'Message': 'string'
                    },
                ]
            },
        ]
    },
    'EstimatedTimeRemainingInMinutes': 123,
    'IsAutoPredictor': True|False,
    'DatasetImportJobArns': [
        'string',
    ],
    'Status': 'string',
    'Message': 'string',
    'CreationTime': datetime(2015, 1, 1),
    'LastModificationTime': datetime(2015, 1, 1),
    'OptimizationMetric': 'WAPE'|'RMSE'|'AverageWeightedQuantileLoss'|'MASE'|'MAPE'
}

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.

    • AutoMLAlgorithmArns (list) --

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

      • (string) --
    • ForecastHorizon (integer) --

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

    • ForecastTypes (list) --

      The forecast types used during predictor training. Default value is ["0.1","0.5","0.9"]

      • (string) --
    • PerformAutoML (boolean) --

      Whether the predictor is set to perform AutoML.

    • AutoMLOverrideStrategy (string) --

      Note

      The LatencyOptimized AutoML override strategy is only available in private beta. Contact Amazon Web Services Support or your account manager to learn more about access privileges.

      The AutoML strategy used to train the predictor. Unless LatencyOptimized is specified, the AutoML strategy optimizes predictor accuracy.

      This parameter is only valid for predictors trained using AutoML.

    • PerformHPO (boolean) --

      Whether the predictor is set to perform hyperparameter optimization (HPO).

    • TrainingParameters (dict) --

      The default training parameters or overrides selected during model training. When running AutoML or choosing HPO with CNN-QR or DeepAR+, the optimized values for the chosen hyperparameters are returned. For more information, see 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. Valid values are 1 through 5.

      • BackTestWindowOffset (integer) --

        The point from the end of the dataset where you want to split the data for model training and testing (evaluation). Specify the value as the number of data points. The default is the value of the forecast horizon. BackTestWindowOffset can be used to mimic a past virtual forecast start date. This value must be greater than or equal to the forecast horizon and less than half of the TARGET_TIME_SERIES dataset length.

        ForecastHorizon <= BackTestWindowOffset < 1/2 * TARGET_TIME_SERIES dataset length
    • 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. Valid 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 values greater than 0.

              ReverseLogarithmic

              hyperparameter 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.

              For information about choosing a hyperparameter scale, see Hyperparameter Scaling. One of the following values:

        • 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. Valid 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 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.

              For information about choosing a hyperparameter scale, see Hyperparameter Scaling. One of the following values:

    • 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. The only supported feature is a holiday calendar.

        • (dict) --

          Note

          This object belongs to the CreatePredictor operation. If you created your predictor with CreateAutoPredictor, see AdditionalDataset.

          Describes a supplementary feature of a dataset group. This object is part of the InputDataConfig object. Forecast supports the Weather Index and Holidays built-in featurizations.

          Weather Index

          The Amazon Forecast Weather Index is a built-in featurization that incorporates historical and projected weather information into your model. The Weather Index supplements your datasets with over two years of historical weather data and up to 14 days of projected weather data. For more information, see Amazon Forecast Weather Index.

          Holidays

          Holidays is a built-in featurization that incorporates a feature-engineered dataset of national holiday information into your model. It provides native support for the holiday calendars of 66 countries. To view the holiday calendars, refer to the Jollyday library. For more information, see Holidays Featurization.

          • Name (string) --

            The name of the feature. Valid values: "holiday" and "weather" .

          • Value (string) --
            Weather Index

            To enable the Weather Index, set the value to "true"

            Holidays

            To enable Holidays, specify a country with one of the following two-letter country codes:

            • "AL" - ALBANIA
            • "AR" - ARGENTINA
            • "AT" - AUSTRIA
            • "AU" - AUSTRALIA
            • "BA" - BOSNIA HERZEGOVINA
            • "BE" - BELGIUM
            • "BG" - BULGARIA
            • "BO" - BOLIVIA
            • "BR" - BRAZIL
            • "BY" - BELARUS
            • "CA" - CANADA
            • "CL" - CHILE
            • "CO" - COLOMBIA
            • "CR" - COSTA RICA
            • "HR" - CROATIA
            • "CZ" - CZECH REPUBLIC
            • "DK" - DENMARK
            • "EC" - ECUADOR
            • "EE" - ESTONIA
            • "ET" - ETHIOPIA
            • "FI" - FINLAND
            • "FR" - FRANCE
            • "DE" - GERMANY
            • "GR" - GREECE
            • "HU" - HUNGARY
            • "IS" - ICELAND
            • "IN" - INDIA
            • "IE" - IRELAND
            • "IT" - ITALY
            • "JP" - JAPAN
            • "KZ" - KAZAKHSTAN
            • "KR" - KOREA
            • "LV" - LATVIA
            • "LI" - LIECHTENSTEIN
            • "LT" - LITHUANIA
            • "LU" - LUXEMBOURG
            • "MK" - MACEDONIA
            • "MT" - MALTA
            • "MX" - MEXICO
            • "MD" - MOLDOVA
            • "ME" - MONTENEGRO
            • "NL" - NETHERLANDS
            • "NZ" - NEW ZEALAND
            • "NI" - NICARAGUA
            • "NG" - NIGERIA
            • "NO" - NORWAY
            • "PA" - PANAMA
            • "PY" - PARAGUAY
            • "PE" - PERU
            • "PL" - POLAND
            • "PT" - PORTUGAL
            • "RO" - ROMANIA
            • "RU" - RUSSIA
            • "RS" - SERBIA
            • "SK" - SLOVAKIA
            • "SI" - SLOVENIA
            • "ZA" - SOUTH AFRICA
            • "ES" - SPAIN
            • "SE" - SWEDEN
            • "CH" - SWITZERLAND
            • "UA" - UKRAINE
            • "AE" - UNITED ARAB EMIRATES
            • "US" - UNITED STATES
            • "UK" - UNITED KINGDOM
            • "UY" - URUGUAY
            • "VE" - VENEZUELA
    • FeaturizationConfig (dict) --

      The featurization configuration.

      • ForecastFrequency (string) --

        The frequency of predictions in a forecast.

        Valid intervals are an integer followed by Y (Year), M (Month), W (Week), D (Day), H (Hour), and min (Minute). For example, "1D" indicates every day and "15min" indicates every 15 minutes. You cannot specify a value that would overlap with the next larger frequency. That means, for example, you cannot specify a frequency of 60 minutes, because that is equivalent to 1 hour. The valid values for each frequency are the following:

        • Minute - 1-59
        • Hour - 1-23
        • Day - 1-6
        • Week - 1-4
        • Month - 1-11
        • Year - 1

        Thus, if you want every other week forecasts, specify "2W". Or, if you want quarterly forecasts, you specify "3M".

        The frequency must be greater than or equal to the TARGET_TIME_SERIES dataset frequency.

        When a RELATED_TIME_SERIES dataset is provided, the frequency must be equal to the TARGET_TIME_SERIES dataset frequency.

      • 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.

        All forecast dimensions specified in the TARGET_TIME_SERIES dataset don't need to be specified in the CreatePredictor request. All forecast dimensions specified in the RELATED_TIME_SERIES dataset must be specified in the CreatePredictor request.

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

        An array of featurization (transformation) information for the fields of a dataset.

        • (dict) --

          Note

          This object belongs to the CreatePredictor operation. If you created your predictor with CreateAutoPredictor, see AttributeConfig.

          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 that specifies the data field to be featurized. Amazon Forecast supports the target field of the TARGET_TIME_SERIES and the RELATED_TIME_SERIES datasets. For example, for the RETAIL domain, the target is demand , and for the CUSTOM domain, the target is target_value . For more information, see howitworks-missing-values.

          • FeaturizationPipeline (list) --

            An array of one FeaturizationMethod object that specifies the feature transformation method.

            • (dict) --

              Provides information about the method that featurizes (transforms) a dataset field. The method is part of the FeaturizationPipeline of the Featurization object.

              The following is an example of how you specify a FeaturizationMethod object.

              {

              "FeaturizationMethodName": "filling",

              "FeaturizationMethodParameters": {"aggregation": "sum", "middlefill": "zero", "backfill": "zero"}

              }

              • FeaturizationMethodName (string) --

                The name of the method. The "filling" method is the only supported method.

              • FeaturizationMethodParameters (dict) --

                The method parameters (key-value pairs), which are a map of override parameters. Specify these parameters to override the default values. Related Time Series attributes do not accept aggregation parameters.

                The following list shows the parameters and their valid values for the "filling" featurization method for a Target Time Series dataset. Bold signifies the default value.

                • aggregation : sum , avg , first , min , max
                • frontfill : none
                • middlefill : zero , nan (not a number), value , median , mean , min , max
                • backfill : zero , nan , value , median , mean , min , max

                The following list shows the parameters and their valid values for a Related Time Series featurization method (there are no defaults):

                • middlefill : zero , value , median , mean , min , max
                • backfill : zero , value , median , mean , min , max
                • futurefill : zero , value , median , mean , min , max

                To set a filling method to a specific value, set the fill parameter to value and define the value in a corresponding _value parameter. For example, to set backfilling to a value of 2, include the following: "backfill": "value" and "backfill_value":"2" .

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

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

      • RoleArn (string) --

        The ARN of the IAM role that Amazon Forecast can assume to access the KMS key.

        Passing a role across Amazon Web Services accounts is not allowed. If you pass a role that isn't in your account, you get an InvalidInputException error.

      • KMSKeyArn (string) --

        The Amazon Resource Name (ARN) of the KMS key.

    • PredictorExecutionDetails (dict) --

      Details on the the status and results of the backtests performed to evaluate the accuracy of the predictor. You specify the number of backtests to perform when you call the operation.

      • PredictorExecutions (list) --

        An array of the backtests performed to evaluate the accuracy of the predictor against a particular algorithm. The NumberOfBacktestWindows from the object determines the number of windows in the array.

        • (dict) --

          The algorithm used to perform a backtest and the status of those tests.

          • AlgorithmArn (string) --

            The ARN of the algorithm used to test the predictor.

          • TestWindows (list) --

            An array of test windows used to evaluate the algorithm. The NumberOfBacktestWindows from the object determines the number of windows in the array.

            • (dict) --

              The status, start time, and end time of a backtest, as well as a failure reason if applicable.

              • TestWindowStart (datetime) --

                The time at which the test began.

              • TestWindowEnd (datetime) --

                The time at which the test ended.

              • Status (string) --

                The status of the test. Possible status values are:

                • ACTIVE
                • CREATE_IN_PROGRESS
                • CREATE_FAILED
              • Message (string) --

                If the test failed, the reason why it failed.

    • EstimatedTimeRemainingInMinutes (integer) --

      The estimated time remaining in minutes for the predictor training job to complete.

    • IsAutoPredictor (boolean) --

      Whether the predictor was created with CreateAutoPredictor.

    • DatasetImportJobArns (list) --

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

      • (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
      • CREATE_STOPPING , CREATE_STOPPED

      Note

      The Status of the predictor must be ACTIVE before you can use 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) --

      The last time the resource was modified. The timestamp depends on the status of the job:

      • CREATE_PENDING - The CreationTime .
      • CREATE_IN_PROGRESS - The current timestamp.
      • CREATE_STOPPING - The current timestamp.
      • CREATE_STOPPED - When the job stopped.
      • ACTIVE or CREATE_FAILED - When the job finished or failed.
    • OptimizationMetric (string) --

      The accuracy metric used to optimize the predictor.

Exceptions

  • ForecastService.Client.exceptions.InvalidInputException
  • ForecastService.Client.exceptions.ResourceNotFoundException
describe_predictor_backtest_export_job(**kwargs)

Describes a predictor backtest export job created using the CreatePredictorBacktestExportJob operation.

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

  • CreationTime
  • LastModificationTime
  • Status
  • Message (if an error occurred)

See also: AWS API Documentation

Request Syntax

response = client.describe_predictor_backtest_export_job(
    PredictorBacktestExportJobArn='string'
)
Parameters
PredictorBacktestExportJobArn (string) --

[REQUIRED]

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

Return type
dict
Returns
Response Syntax
{
    'PredictorBacktestExportJobArn': 'string',
    'PredictorBacktestExportJobName': 'string',
    'PredictorArn': 'string',
    'Destination': {
        'S3Config': {
            'Path': 'string',
            'RoleArn': 'string',
            'KMSKeyArn': 'string'
        }
    },
    'Message': 'string',
    'Status': 'string',
    'CreationTime': datetime(2015, 1, 1),
    'LastModificationTime': datetime(2015, 1, 1),
    'Format': 'string'
}

Response Structure

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

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

    • PredictorBacktestExportJobName (string) --

      The name of the predictor backtest export job.

    • PredictorArn (string) --

      The Amazon Resource Name (ARN) of the predictor.

    • Destination (dict) --

      The destination for an export job. Provide an S3 path, an Identity and Access Management (IAM) role that allows Amazon Forecast to access the location, and an Key Management Service (KMS) key (optional).

      • 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 Identity and Access Management (IAM) role that Amazon Forecast can assume to access the Amazon S3 bucket or files. If you provide a value for the KMSKeyArn key, the role must allow access to the key.

          Passing a role across Amazon Web Services accounts is not allowed. If you pass a role that isn't in your account, you get an InvalidInputException error.

        • KMSKeyArn (string) --

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

    • Message (string) --

      Information about any errors that may have occurred during the backtest export.

    • Status (string) --

      The status of the predictor backtest export job. States include:

      • ACTIVE
      • CREATE_PENDING , CREATE_IN_PROGRESS , CREATE_FAILED
      • CREATE_STOPPING , CREATE_STOPPED
      • DELETE_PENDING , DELETE_IN_PROGRESS , DELETE_FAILED
    • CreationTime (datetime) --

      When the predictor backtest export job was created.

    • LastModificationTime (datetime) --

      The last time the resource was modified. The timestamp depends on the status of the job:

      • CREATE_PENDING - The CreationTime .
      • CREATE_IN_PROGRESS - The current timestamp.
      • CREATE_STOPPING - The current timestamp.
      • CREATE_STOPPED - When the job stopped.
      • ACTIVE or CREATE_FAILED - When the job finished or failed.
    • Format (string) --

      The format of the exported data, CSV or PARQUET.

Exceptions

  • ForecastService.Client.exceptions.InvalidInputException
  • ForecastService.Client.exceptions.ResourceNotFoundException
describe_what_if_analysis(**kwargs)

Describes the what-if analysis created using the CreateWhatIfAnalysis operation.

In addition to listing the properties provided in the CreateWhatIfAnalysis request, this operation lists the following properties:

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

See also: AWS API Documentation

Request Syntax

response = client.describe_what_if_analysis(
    WhatIfAnalysisArn='string'
)
Parameters
WhatIfAnalysisArn (string) --

[REQUIRED]

The Amazon Resource Name (ARN) of the what-if analysis that you are interested in.

Return type
dict
Returns
Response Syntax
{
    'WhatIfAnalysisName': 'string',
    'WhatIfAnalysisArn': 'string',
    'ForecastArn': 'string',
    'EstimatedTimeRemainingInMinutes': 123,
    'Status': 'string',
    'Message': 'string',
    'CreationTime': datetime(2015, 1, 1),
    'LastModificationTime': datetime(2015, 1, 1),
    'TimeSeriesSelector': {
        'TimeSeriesIdentifiers': {
            'DataSource': {
                'S3Config': {
                    'Path': 'string',
                    'RoleArn': 'string',
                    'KMSKeyArn': 'string'
                }
            },
            'Schema': {
                'Attributes': [
                    {
                        'AttributeName': 'string',
                        'AttributeType': 'string'|'integer'|'float'|'timestamp'|'geolocation'
                    },
                ]
            },
            'Format': 'string'
        }
    }
}

Response Structure

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

      The name of the what-if analysis.

    • WhatIfAnalysisArn (string) --

      The Amazon Resource Name (ARN) of the what-if analysis.

    • ForecastArn (string) --

      The Amazon Resource Name (ARN) of the what-if forecast.

    • EstimatedTimeRemainingInMinutes (integer) --

      The approximate time remaining to complete the what-if analysis, in minutes.

    • Status (string) --

      The status of the what-if analysis. States include:

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

      Note

      The Status of the what-if analysis must be ACTIVE before you can access the analysis.

    • Message (string) --

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

    • CreationTime (datetime) --

      When the what-if analysis was created.

    • LastModificationTime (datetime) --

      The last time the resource was modified. The timestamp depends on the status of the job:

      • CREATE_PENDING - The CreationTime .
      • CREATE_IN_PROGRESS - The current timestamp.
      • CREATE_STOPPING - The current timestamp.
      • CREATE_STOPPED - When the job stopped.
      • ACTIVE or CREATE_FAILED - When the job finished or failed.
    • TimeSeriesSelector (dict) --

      Defines the set of time series that are used to create the forecasts in a TimeSeriesIdentifiers object.

      The TimeSeriesIdentifiers object needs the following information:

      • DataSource
      • Format
      • Schema
      • TimeSeriesIdentifiers (dict) --

        Details about the import file that contains the time series for which you want to create forecasts.

        • DataSource (dict) --

          The source of your data, an Identity and Access Management (IAM) role that allows Amazon Forecast to access the data and, optionally, an Key Management Service (KMS) key.

          • S3Config (dict) --

            The path to the 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 Identity and Access Management (IAM) role that Amazon Forecast can assume to access the Amazon S3 bucket or files. If you provide a value for the KMSKeyArn key, the role must allow access to the key.

              Passing a role across Amazon Web Services accounts is not allowed. If you pass a role that isn't in your account, you get an InvalidInputException error.

            • KMSKeyArn (string) --

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

        • Schema (dict) --

          Defines the fields of a dataset.

          • 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 dataset field. 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.

                For a related time series dataset, other than date, item_id, and forecast dimensions attributes, all attributes should be of numerical type (integer/float).

        • Format (string) --

          The format of the data, either CSV or PARQUET.

Exceptions

  • ForecastService.Client.exceptions.InvalidInputException
  • ForecastService.Client.exceptions.ResourceNotFoundException
describe_what_if_forecast(**kwargs)

Describes the what-if forecast created using the CreateWhatIfForecast operation.

In addition to listing the properties provided in the CreateWhatIfForecast request, this operation lists the following properties:

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

See also: AWS API Documentation

Request Syntax

response = client.describe_what_if_forecast(
    WhatIfForecastArn='string'
)
Parameters
WhatIfForecastArn (string) --

[REQUIRED]

The Amazon Resource Name (ARN) of the what-if forecast that you are interested in.

Return type
dict
Returns
Response Syntax
{
    'WhatIfForecastName': 'string',
    'WhatIfForecastArn': 'string',
    'WhatIfAnalysisArn': 'string',
    'EstimatedTimeRemainingInMinutes': 123,
    'Status': 'string',
    'Message': 'string',
    'CreationTime': datetime(2015, 1, 1),
    'LastModificationTime': datetime(2015, 1, 1),
    'TimeSeriesTransformations': [
        {
            'Action': {
                'AttributeName': 'string',
                'Operation': 'ADD'|'SUBTRACT'|'MULTIPLY'|'DIVIDE',
                'Value': 123.0
            },
            'TimeSeriesConditions': [
                {
                    'AttributeName': 'string',
                    'AttributeValue': 'string',
                    'Condition': 'EQUALS'|'NOT_EQUALS'|'LESS_THAN'|'GREATER_THAN'
                },
            ]
        },
    ],
    'TimeSeriesReplacementsDataSource': {
        'S3Config': {
            'Path': 'string',
            'RoleArn': 'string',
            'KMSKeyArn': 'string'
        },
        'Schema': {
            'Attributes': [
                {
                    'AttributeName': 'string',
                    'AttributeType': 'string'|'integer'|'float'|'timestamp'|'geolocation'
                },
            ]
        },
        'Format': 'string',
        'TimestampFormat': 'string'
    },
    'ForecastTypes': [
        'string',
    ]
}

Response Structure

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

      The name of the what-if forecast.

    • WhatIfForecastArn (string) --

      The Amazon Resource Name (ARN) of the what-if forecast.

    • WhatIfAnalysisArn (string) --

      The Amazon Resource Name (ARN) of the what-if analysis that contains this forecast.

    • EstimatedTimeRemainingInMinutes (integer) --

      The approximate time remaining to complete the what-if forecast, in minutes.

    • Status (string) --

      The status of the what-if forecast. States include:

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

      Note

      The Status of the what-if forecast must be ACTIVE before you can access the forecast.

    • Message (string) --

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

    • CreationTime (datetime) --

      When the what-if forecast was created.

    • LastModificationTime (datetime) --

      The last time the resource was modified. The timestamp depends on the status of the job:

      • CREATE_PENDING - The CreationTime .
      • CREATE_IN_PROGRESS - The current timestamp.
      • CREATE_STOPPING - The current timestamp.
      • CREATE_STOPPED - When the job stopped.
      • ACTIVE or CREATE_FAILED - When the job finished or failed.
    • TimeSeriesTransformations (list) --

      An array of Action and TimeSeriesConditions elements that describe what transformations were applied to which time series.

      • (dict) --

        A transformation function is a pair of operations that select and modify the rows in a related time series. You select the rows that you want with a condition operation and you modify the rows with a transformation operation. All conditions are joined with an AND operation, meaning that all conditions must be true for the transformation to be applied. Transformations are applied in the order that they are listed.

        • Action (dict) --

          An array of actions that define a time series and how it is transformed. These transformations create a new time series that is used for the what-if analysis.

          • AttributeName (string) --

            The related time series that you are modifying. This value is case insensitive.

          • Operation (string) --

            The operation that is applied to the provided attribute. Operations include:

            • ADD - adds Value to all rows of AttributeName .
            • SUBTRACT - subtracts Value from all rows of AttributeName .
            • MULTIPLY - multiplies all rows of AttributeName by Value .
            • DIVIDE - divides all rows of AttributeName by Value .
          • Value (float) --

            The value that is applied for the chosen Operation .

        • TimeSeriesConditions (list) --

          An array of conditions that define which members of the related time series are transformed.

          • (dict) --

            Creates a subset of items within an attribute that are modified. For example, you can use this operation to create a subset of items that cost $5 or less. To do this, you specify "AttributeName": "price" , "AttributeValue": "5" , and "Condition": "LESS_THAN" . Pair this operation with the Action operation within the CreateWhatIfForecastRequest$TimeSeriesTransformations operation to define how the attribute is modified.

            • AttributeName (string) --

              The item_id, dimension name, IM name, or timestamp that you are modifying.

            • AttributeValue (string) --

              The value that is applied for the chosen Condition .

            • Condition (string) --

              The condition to apply. Valid values are EQUALS , NOT_EQUALS , LESS_THAN and GREATER_THAN .

    • TimeSeriesReplacementsDataSource (dict) --

      An array of S3Config , Schema , and Format elements that describe the replacement time series.

      • S3Config (dict) --

        The path to the file(s) in an Amazon Simple Storage Service (Amazon S3) bucket, and an Identity and Access Management (IAM) role that Amazon Forecast can assume to access the file(s). Optionally, includes an Key Management Service (KMS) key. This object is part of the DataSource object that is submitted in the CreateDatasetImportJob request, and part of the DataDestination object.

        • 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 Identity and Access Management (IAM) role that Amazon Forecast can assume to access the Amazon S3 bucket or files. If you provide a value for the KMSKeyArn key, the role must allow access to the key.

          Passing a role across Amazon Web Services accounts is not allowed. If you pass a role that isn't in your account, you get an InvalidInputException error.

        • KMSKeyArn (string) --

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

      • Schema (dict) --

        Defines the fields of a dataset.

        • 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 dataset field. 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.

              For a related time series dataset, other than date, item_id, and forecast dimensions attributes, all attributes should be of numerical type (integer/float).

      • Format (string) --

        The format of the replacement data, CSV or PARQUET.

      • TimestampFormat (string) --

        The timestamp format of the replacement data.

    • ForecastTypes (list) --

      The quantiles at which probabilistic forecasts are generated. You can specify up to five quantiles per what-if forecast in the CreateWhatIfForecast operation. If you didn't specify quantiles, the default values are ["0.1", "0.5", "0.9"] .

      • (string) --

Exceptions

  • ForecastService.Client.exceptions.InvalidInputException
  • ForecastService.Client.exceptions.ResourceNotFoundException
describe_what_if_forecast_export(**kwargs)

Describes the what-if forecast export created using the CreateWhatIfForecastExport operation.

In addition to listing the properties provided in the CreateWhatIfForecastExport request, this operation lists the following properties:

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

See also: AWS API Documentation

Request Syntax

response = client.describe_what_if_forecast_export(
    WhatIfForecastExportArn='string'
)
Parameters
WhatIfForecastExportArn (string) --

[REQUIRED]

The Amazon Resource Name (ARN) of the what-if forecast export that you are interested in.

Return type
dict
Returns
Response Syntax
{
    'WhatIfForecastExportArn': 'string',
    'WhatIfForecastExportName': 'string',
    'WhatIfForecastArns': [
        'string',
    ],
    'Destination': {
        'S3Config': {
            'Path': 'string',
            'RoleArn': 'string',
            'KMSKeyArn': 'string'
        }
    },
    'Message': 'string',
    'Status': 'string',
    'CreationTime': datetime(2015, 1, 1),
    'EstimatedTimeRemainingInMinutes': 123,
    'LastModificationTime': datetime(2015, 1, 1),
    'Format': 'string'
}

Response Structure

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

      The Amazon Resource Name (ARN) of the what-if forecast export.

    • WhatIfForecastExportName (string) --

      The name of the what-if forecast export.

    • WhatIfForecastArns (list) --

      An array of Amazon Resource Names (ARNs) that represent all of the what-if forecasts exported in this resource.

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

      The destination for an export job. Provide an S3 path, an Identity and Access Management (IAM) role that allows Amazon Forecast to access the location, and an Key Management Service (KMS) key (optional).

      • 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 Identity and Access Management (IAM) role that Amazon Forecast can assume to access the Amazon S3 bucket or files. If you provide a value for the KMSKeyArn key, the role must allow access to the key.

          Passing a role across Amazon Web Services accounts is not allowed. If you pass a role that isn't in your account, you get an InvalidInputException error.

        • KMSKeyArn (string) --

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

    • Message (string) --

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

    • Status (string) --

      The status of the what-if forecast. States include:

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

      Note

      The Status of the what-if forecast export must be ACTIVE before you can access the forecast export.

    • CreationTime (datetime) --

      When the what-if forecast export was created.

    • EstimatedTimeRemainingInMinutes (integer) --

      The approximate time remaining to complete the what-if forecast export, in minutes.

    • LastModificationTime (datetime) --

      The last time the resource was modified. The timestamp depends on the status of the job:

      • CREATE_PENDING - The CreationTime .
      • CREATE_IN_PROGRESS - The current timestamp.
      • CREATE_STOPPING - The current timestamp.
      • CREATE_STOPPED - When the job stopped.
      • ACTIVE or CREATE_FAILED - When the job finished or failed.
    • Format (string) --

      The format of the exported data, CSV or PARQUET.

Exceptions

  • ForecastService.Client.exceptions.InvalidInputException
  • ForecastService.Client.exceptions.ResourceNotFoundException
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. For more information, see Predictor Metrics.

This operation generates metrics for each backtest window that was evaluated. The number of backtest windows ( NumberOfBacktestWindows ) is specified using the EvaluationParameters object, which is optionally included in the CreatePredictor request. If NumberOfBacktestWindows isn't specified, the number defaults to one.

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

Note

Before you can get accuracy metrics, the Status of the predictor must be ACTIVE , signifying that training has completed. To get the status, use the DescribePredictor operation.

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
                            },
                        ],
                        'ErrorMetrics': [
                            {
                                'ForecastType': 'string',
                                'WAPE': 123.0,
                                'RMSE': 123.0,
                                'MASE': 123.0,
                                'MAPE': 123.0
                            },
                        ],
                        'AverageWeightedQuantileLoss': 123.0
                    }
                },
            ]
        },
    ],
    'IsAutoPredictor': True|False,
    'AutoMLOverrideStrategy': 'LatencyOptimized'|'AccuracyOptimized',
    'OptimizationMetric': 'WAPE'|'RMSE'|'AverageWeightedQuantileLoss'|'MASE'|'MAPE'
}

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.

              • 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 the actual value over the quantile, weighted (normalized) by dividing by the sum over all quantiles.

              • ErrorMetrics (list) --

                Provides detailed error metrics for each forecast type. Metrics include root-mean square-error (RMSE), mean absolute percentage error (MAPE), mean absolute scaled error (MASE), and weighted average percentage error (WAPE).

                • (dict) --

                  Provides detailed error metrics to evaluate the performance of a predictor. This object is part of the Metrics object.

                  • ForecastType (string) --

                    The Forecast type used to compute WAPE, MAPE, MASE, and RMSE.

                  • WAPE (float) --

                    The weighted absolute percentage error (WAPE).

                  • RMSE (float) --

                    The root-mean-square error (RMSE).

                  • MASE (float) --

                    The Mean Absolute Scaled Error (MASE)

                  • MAPE (float) --

                    The Mean Absolute Percentage Error (MAPE)

              • AverageWeightedQuantileLoss (float) --

                The average value of all weighted quantile losses.

    • IsAutoPredictor (boolean) --

      Whether the predictor was created with CreateAutoPredictor.

    • AutoMLOverrideStrategy (string) --

      Note

      The LatencyOptimized AutoML override strategy is only available in private beta. Contact Amazon Web Services Support or your account manager to learn more about access privileges.

      The AutoML strategy used to train the predictor. Unless LatencyOptimized is specified, the AutoML strategy optimizes predictor accuracy.

      This parameter is only valid for predictors trained using AutoML.

    • OptimizationMetric (string) --

      The accuracy metric used to optimize the predictor.

Exceptions

  • ForecastService.Client.exceptions.InvalidInputException
  • ForecastService.Client.exceptions.ResourceNotFoundException
  • ForecastService.Client.exceptions.ResourceInUseException
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, this operation returns a summary of its properties, including its Amazon Resource Name (ARN). You can retrieve the complete set of properties by using the dataset group 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 DatasetGroupArn .

        • DatasetGroupArn (string) --

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

        • DatasetGroupName (string) --

          The name of 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 time of the ListDatasetGroups call.

    • 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.

Exceptions

  • ForecastService.Client.exceptions.InvalidNextTokenException
list_dataset_import_jobs(**kwargs)

Returns a list of dataset import jobs created using the CreateDatasetImportJob operation. For each import job, this operation returns a summary of its properties, including its Amazon Resource Name (ARN). 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 the datasets that match the statement from the list, respectively. The match statement consists of a key and a value.

    Filter properties
    • Condition - The condition to apply. Valid values are IS and IS_NOT . To include the datasets that match the statement, specify IS . To exclude matching datasets, specify IS_NOT .
    • Key - The name of the parameter to filter on. Valid values are DatasetArn and Status .
    • Value - The value to match.

    For example, to list all dataset import jobs whose status is ACTIVE, you specify the following filter:

    "Filters": [ { "Condition": "IS", "Key": "Status", "Value": "ACTIVE" } ]
    • (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 the objects that match the statement, respectively. The match statement consists of a key and a value.

      • Key (string) -- [REQUIRED]

        The name of the parameter to filter on.

      • Value (string) -- [REQUIRED]

        The value to match.

      • Condition (string) -- [REQUIRED]

        The condition to apply. To include the objects that match the statement, specify IS . To exclude matching objects, specify IS_NOT .

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),
            'ImportMode': 'FULL'|'INCREMENTAL'
        },
    ],
    '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 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 training data to import and an Identity and Access Management (IAM) role that Amazon Forecast can assume to access the data. The training data must be stored in an Amazon S3 bucket.

          If encryption is used, DataSource includes an Key Management Service (KMS) key.

          • S3Config (dict) --

            The path to the 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 Identity and Access Management (IAM) role that Amazon Forecast can assume to access the Amazon S3 bucket or files. If you provide a value for the KMSKeyArn key, the role must allow access to the key.

              Passing a role across Amazon Web Services accounts is not allowed. If you pass a role that isn't in your account, you get an InvalidInputException error.

            • KMSKeyArn (string) --

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

        • Status (string) --

          The status of the dataset import job. States include:

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

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

        • CreationTime (datetime) --

          When the dataset import job was created.

        • LastModificationTime (datetime) --

          The last time the resource was modified. The timestamp depends on the status of the job:

          • CREATE_PENDING - The CreationTime .
          • CREATE_IN_PROGRESS - The current timestamp.
          • CREATE_STOPPING - The current timestamp.
          • CREATE_STOPPED - When the job stopped.
          • ACTIVE or CREATE_FAILED - When the job finished or failed.
        • ImportMode (string) --

          The import mode of the dataset import job, FULL or INCREMENTAL.

    • 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.

Exceptions

  • ForecastService.Client.exceptions.InvalidNextTokenException
  • ForecastService.Client.exceptions.InvalidInputException
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. To retrieve the complete set of properties, use 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 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 you create a dataset, LastModificationTime is the same as CreationTime . While data is being imported to the dataset, LastModificationTime is the current time of the ListDatasets call. After a CreateDatasetImportJob operation has finished, LastModificationTime is when the import job completed 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.

Exceptions

  • ForecastService.Client.exceptions.InvalidNextTokenException
list_explainabilities(**kwargs)

Returns a list of Explainability resources created using the CreateExplainability operation. This operation returns a summary for each Explainability. You can filter the list using an array of Filter objects.

To retrieve the complete set of properties for a particular Explainability resource, use the ARN with the DescribeExplainability operation.

See also: AWS API Documentation

Request Syntax

response = client.list_explainabilities(
    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 returned in the response.
  • Filters (list) --

    An array of filters. For each filter, provide a condition and a match statement. The condition is either IS or IS_NOT , which specifies whether to include or exclude the resources that match the statement from the list. The match statement consists of a key and a value.

    Filter properties
    • Condition - The condition to apply. Valid values are IS and IS_NOT .
    • Key - The name of the parameter to filter on. Valid values are ResourceArn and Status .
    • Value - The value to match.
    • (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 the objects that match the statement, respectively. The match statement consists of a key and a value.

      • Key (string) -- [REQUIRED]

        The name of the parameter to filter on.

      • Value (string) -- [REQUIRED]

        The value to match.

      • Condition (string) -- [REQUIRED]

        The condition to apply. To include the objects that match the statement, specify IS . To exclude matching objects, specify IS_NOT .

Return type

dict

Returns

Response Syntax

{
    'Explainabilities': [
        {
            'ExplainabilityArn': 'string',
            'ExplainabilityName': 'string',
            'ResourceArn': 'string',
            'ExplainabilityConfig': {
                'TimeSeriesGranularity': 'ALL'|'SPECIFIC',
                'TimePointGranularity': 'ALL'|'SPECIFIC'
            },
            'Status': 'string',
            'Message': 'string',
            'CreationTime': datetime(2015, 1, 1),
            'LastModificationTime': datetime(2015, 1, 1)
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) --

    • Explainabilities (list) --

      An array of objects that summarize the properties of each Explainability resource.

      • (dict) --

        Provides a summary of the Explainability properties used in the ListExplainabilities operation. To get a complete set of properties, call the DescribeExplainability operation, and provide the listed ExplainabilityArn .

        • ExplainabilityArn (string) --

          The Amazon Resource Name (ARN) of the Explainability.

        • ExplainabilityName (string) --

          The name of the Explainability.

        • ResourceArn (string) --

          The Amazon Resource Name (ARN) of the Predictor or Forecast used to create the Explainability.

        • ExplainabilityConfig (dict) --

          The configuration settings that define the granularity of time series and time points for the Explainability.

          • TimeSeriesGranularity (string) --

            To create an Explainability for all time series in your datasets, use ALL . To create an Explainability for specific time series in your datasets, use SPECIFIC .

            Specify time series by uploading a CSV or Parquet file to an Amazon S3 bucket and set the location within the DataDestination data type.

          • TimePointGranularity (string) --

            To create an Explainability for all time points in your forecast horizon, use ALL . To create an Explainability for specific time points in your forecast horizon, use SPECIFIC .

            Specify time points with the StartDateTime and EndDateTime parameters within the CreateExplainability operation.

        • Status (string) --

          The status of the Explainability. States include:

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

          Information about any errors that may have occurred during the Explainability creation process.

        • CreationTime (datetime) --

          When the Explainability was created.

        • LastModificationTime (datetime) --

          The last time the resource was modified. The timestamp depends on the status of the job:

          • CREATE_PENDING - The CreationTime .
          • CREATE_IN_PROGRESS - The current timestamp.
          • CREATE_STOPPING - The current timestamp.
          • CREATE_STOPPED - When the job stopped.
          • ACTIVE or CREATE_FAILED - When the job finished or failed.
    • NextToken (string) --

      Returns this token if the response is truncated. To retrieve the next set of results, use the token in the next request.

Exceptions

  • ForecastService.Client.exceptions.InvalidNextTokenException
  • ForecastService.Client.exceptions.InvalidInputException
list_explainability_exports(**kwargs)

Returns a list of Explainability exports created using the CreateExplainabilityExport operation. This operation returns a summary for each Explainability export. You can filter the list using an array of Filter objects.

To retrieve the complete set of properties for a particular Explainability export, use the ARN with the DescribeExplainability operation.

See also: AWS API Documentation

Request Syntax

response = client.list_explainability_exports(
    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, provide a condition and a match statement. The condition is either IS or IS_NOT , which specifies whether to include or exclude resources that match the statement from the list. The match statement consists of a key and a value.

    Filter properties
    • Condition - The condition to apply. Valid values are IS and IS_NOT .
    • Key - The name of the parameter to filter on. Valid values are ResourceArn and Status .
    • Value - The value to match.
    • (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 the objects that match the statement, respectively. The match statement consists of a key and a value.

      • Key (string) -- [REQUIRED]

        The name of the parameter to filter on.

      • Value (string) -- [REQUIRED]

        The value to match.

      • Condition (string) -- [REQUIRED]

        The condition to apply. To include the objects that match the statement, specify IS . To exclude matching objects, specify IS_NOT .

Return type

dict

Returns

Response Syntax

{
    'ExplainabilityExports': [
        {
            'ExplainabilityExportArn': 'string',
            'ExplainabilityExportName': '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) --

    • ExplainabilityExports (list) --

      An array of objects that summarize the properties of each Explainability export.

      • (dict) --

        Provides a summary of the Explainability export properties used in the ListExplainabilityExports operation. To get a complete set of properties, call the DescribeExplainabilityExport operation, and provide the ExplainabilityExportArn .

        • ExplainabilityExportArn (string) --

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

        • ExplainabilityExportName (string) --

          The name of the Explainability export

        • Destination (dict) --

          The destination for an export job. Provide an S3 path, an Identity and Access Management (IAM) role that allows Amazon Forecast to access the location, and an Key Management Service (KMS) key (optional).

          • 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 Identity and Access Management (IAM) role that Amazon Forecast can assume to access the Amazon S3 bucket or files. If you provide a value for the KMSKeyArn key, the role must allow access to the key.

              Passing a role across Amazon Web Services accounts is not allowed. If you pass a role that isn't in your account, you get an InvalidInputException error.

            • KMSKeyArn (string) --

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

        • Status (string) --

          The status of the Explainability export. States include:

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

          Information about any errors that may have occurred during the Explainability export.

        • CreationTime (datetime) --

          When the Explainability was created.

        • LastModificationTime (datetime) --

          The last time the resource was modified. The timestamp depends on the status of the job:

          • CREATE_PENDING - The CreationTime .
          • CREATE_IN_PROGRESS - The current timestamp.
          • CREATE_STOPPING - The current timestamp.
          • CREATE_STOPPED - When the job stopped.
          • ACTIVE or CREATE_FAILED - When the job finished or failed.
    • NextToken (string) --

      Returns this token if the response is truncated. To retrieve the next set of results, use the token in the next request.

Exceptions

  • ForecastService.Client.exceptions.InvalidNextTokenException
  • ForecastService.Client.exceptions.InvalidInputException
list_forecast_export_jobs(**kwargs)

Returns a list of forecast export jobs created using the CreateForecastExportJob operation. For each forecast export job, this operation returns a summary of its properties, including its Amazon Resource Name (ARN). To retrieve the complete set of properties, use the ARN with the DescribeForecastExportJob operation. You can filter the list 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 the forecast export jobs that match the statement from the list, respectively. The match statement consists of a key and a value.

    Filter properties
    • Condition - The condition to apply. Valid values are IS and IS_NOT . To include the forecast export jobs that match the statement, specify IS . To exclude matching forecast export jobs, specify IS_NOT .
    • Key - The name of the parameter to filter on. Valid values are ForecastArn and Status .
    • Value - The value to match.

    For example, to list all jobs that export a forecast named electricityforecast , specify the following filter:

    "Filters": [ { "Condition": "IS", "Key": "ForecastArn", "Value": "arn:aws:forecast:us-west-2:<acct-id>:forecast/electricityforecast" } ]
    • (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 the objects that match the statement, respectively. The match statement consists of a key and a value.

      • Key (string) -- [REQUIRED]

        The name of the parameter to filter on.

      • Value (string) -- [REQUIRED]

        The value to match.

      • Condition (string) -- [REQUIRED]

        The condition to apply. To include the objects that match the statement, specify IS . To exclude matching objects, specify IS_NOT .

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 Amazon Simple Storage Service (Amazon 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 Identity and Access Management (IAM) role that Amazon Forecast can assume to access the Amazon S3 bucket or files. If you provide a value for the KMSKeyArn key, the role must allow access to the key.

              Passing a role across Amazon Web Services accounts is not allowed. If you pass a role that isn't in your account, you get an InvalidInputException error.

            • KMSKeyArn (string) --

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

        • Status (string) --

          The status of the forecast export job. States include:

          • ACTIVE
          • CREATE_PENDING , CREATE_IN_PROGRESS , CREATE_FAILED
          • CREATE_STOPPING , CREATE_STOPPED
          • 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 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) --

          The last time the resource was modified. The timestamp depends on the status of the job:

          • CREATE_PENDING - The CreationTime .
          • CREATE_IN_PROGRESS - The current timestamp.
          • CREATE_STOPPING - The current timestamp.
          • CREATE_STOPPED - When the job stopped.
          • 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.

Exceptions

  • ForecastService.Client.exceptions.InvalidNextTokenException
  • ForecastService.Client.exceptions.InvalidInputException
list_forecasts(**kwargs)

Returns a list of forecasts created using the CreateForecast operation. For each forecast, this operation returns a summary of its properties, including its Amazon Resource Name (ARN). To retrieve the complete set of properties, specify the ARN with the DescribeForecast operation. You can filter the list 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 the forecasts that match the statement from the list, respectively. The match statement consists of a key and a value.

    Filter properties
    • Condition - The condition to apply. Valid values are IS and IS_NOT . To include the forecasts that match the statement, specify IS . To exclude matching forecasts, specify IS_NOT .
    • Key - The name of the parameter to filter on. Valid values are DatasetGroupArn , PredictorArn , and Status .
    • Value - The value to match.

    For example, to list all forecasts whose status is not ACTIVE, you would specify:

    "Filters": [ { "Condition": "IS_NOT", "Key": "Status", "Value": "ACTIVE" } ]
    • (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 the objects that match the statement, respectively. The match statement consists of a key and a value.

      • Key (string) -- [REQUIRED]

        The name of the parameter to filter on.

      • Value (string) -- [REQUIRED]

        The value to match.

      • Condition (string) -- [REQUIRED]

        The condition to apply. To include the objects that match the statement, specify IS . To exclude matching objects, specify IS_NOT .

Return type

dict

Returns

Response Syntax

{
    'Forecasts': [
        {
            'ForecastArn': 'string',
            'ForecastName': 'string',
            'PredictorArn': 'string',
            'CreatedUsingAutoPredictor': True|False,
            '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 ForecastArn that is listed in the summary.

        • 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.

        • CreatedUsingAutoPredictor (boolean) --

          Whether the Forecast was created from an AutoPredictor.

        • 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
          • CREATE_STOPPING , CREATE_STOPPED
          • 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) --

          The last time the resource was modified. The timestamp depends on the status of the job:

          • CREATE_PENDING - The CreationTime .
          • CREATE_IN_PROGRESS - The current timestamp.
          • CREATE_STOPPING - The current timestamp.
          • CREATE_STOPPED - When the job stopped.
          • 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.

Exceptions

  • ForecastService.Client.exceptions.InvalidNextTokenException
  • ForecastService.Client.exceptions.InvalidInputException
list_monitor_evaluations(**kwargs)

Returns a list of the monitoring evaluation results and predictor events collected by the monitor resource during different windows of time.

For information about monitoring see predictor-monitoring. For more information about retrieving monitoring results see Viewing Monitoring Results.

See also: AWS API Documentation

Request Syntax

response = client.list_monitor_evaluations(
    NextToken='string',
    MaxResults=123,
    MonitorArn='string',
    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 maximum number of monitoring results to return.
  • MonitorArn (string) --

    [REQUIRED]

    The Amazon Resource Name (ARN) of the monitor resource to get results from.

  • Filters (list) --

    An array of filters. For each filter, provide a condition and a match statement. The condition is either IS or IS_NOT , which specifies whether to include or exclude the resources that match the statement from the list. The match statement consists of a key and a value.

    Filter properties
    • Condition - The condition to apply. Valid values are IS and IS_NOT .
    • Key - The name of the parameter to filter on. The only valid value is EvaluationState .
    • Value - The value to match. Valid values are only SUCCESS or FAILURE .

    For example, to list only successful monitor evaluations, you would specify:

    "Filters": [ { "Condition": "IS", "Key": "EvaluationState", "Value": "SUCCESS" } ]
    • (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 the objects that match the statement, respectively. The match statement consists of a key and a value.

      • Key (string) -- [REQUIRED]

        The name of the parameter to filter on.

      • Value (string) -- [REQUIRED]

        The value to match.

      • Condition (string) -- [REQUIRED]

        The condition to apply. To include the objects that match the statement, specify IS . To exclude matching objects, specify IS_NOT .

Return type

dict

Returns

Response Syntax

{
    'NextToken': 'string',
    'PredictorMonitorEvaluations': [
        {
            'ResourceArn': 'string',
            'MonitorArn': 'string',
            'EvaluationTime': datetime(2015, 1, 1),
            'EvaluationState': 'string',
            'WindowStartDatetime': datetime(2015, 1, 1),
            'WindowEndDatetime': datetime(2015, 1, 1),
            'PredictorEvent': {
                'Detail': 'string',
                'Datetime': datetime(2015, 1, 1)
            },
            'MonitorDataSource': {
                'DatasetImportJobArn': 'string',
                'ForecastArn': 'string',
                'PredictorArn': 'string'
            },
            'MetricResults': [
                {
                    'MetricName': 'string',
                    'MetricValue': 123.0
                },
            ],
            'NumItemsEvaluated': 123,
            'Message': 'string'
        },
    ]
}

Response Structure

  • (dict) --

    • 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. Tokens expire after 24 hours.

    • PredictorMonitorEvaluations (list) --

      The monitoring results and predictor events collected by the monitor resource during different windows of time.

      For information about monitoring see Viewing Monitoring Results. For more information about retrieving monitoring results see Viewing Monitoring Results.

      • (dict) --

        Describes the results of a monitor evaluation.

        • ResourceArn (string) --

          The Amazon Resource Name (ARN) of the resource to monitor.

        • MonitorArn (string) --

          The Amazon Resource Name (ARN) of the monitor resource.

        • EvaluationTime (datetime) --

          The timestamp that indicates when the monitor evaluation was started.

        • EvaluationState (string) --

          The status of the monitor evaluation. The state can be SUCCESS or FAILURE .

        • WindowStartDatetime (datetime) --

          The timestamp that indicates the start of the window that is used for monitor evaluation.

        • WindowEndDatetime (datetime) --

          The timestamp that indicates the end of the window that is used for monitor evaluation.

        • PredictorEvent (dict) --

          Provides details about a predictor event, such as a retraining.

          • Detail (string) --

            The type of event. For example, Retrain . A retraining event denotes the timepoint when a predictor was retrained. Any monitor results from before the Datetime are from the previous predictor. Any new metrics are for the newly retrained predictor.

          • Datetime (datetime) --

            The timestamp for when the event occurred.

        • MonitorDataSource (dict) --

          The source of the data the monitor resource used during the evaluation.

          • DatasetImportJobArn (string) --

            The Amazon Resource Name (ARN) of the dataset import job used to import the data that initiated the monitor evaluation.

          • ForecastArn (string) --

            The Amazon Resource Name (ARN) of the forecast the monitor used during the evaluation.

          • PredictorArn (string) --

            The Amazon Resource Name (ARN) of the predictor resource you are monitoring.

        • MetricResults (list) --

          A list of metrics Forecast calculated when monitoring a predictor. You can compare the value for each metric in the list to the metric's value in the Baseline to see how your predictor's performance is changing.

          • (dict) --

            An individual metric Forecast calculated when monitoring predictor usage. You can compare the value for this metric to the metric's value in the Baseline to see how your predictor's performance is changing.

            For more information about metrics generated by Forecast see Evaluating Predictor Accuracy

            • MetricName (string) --

              The name of the metric.

            • MetricValue (float) --

              The value for the metric.

        • NumItemsEvaluated (integer) --

          The number of items considered during the evaluation.

        • Message (string) --

          Information about any errors that may have occurred during the monitor evaluation.

Exceptions

  • ForecastService.Client.exceptions.InvalidNextTokenException
  • ForecastService.Client.exceptions.InvalidInputException
  • ForecastService.Client.exceptions.ResourceNotFoundException
list_monitors(**kwargs)

Returns a list of monitors created with the CreateMonitor operation and CreateAutoPredictor operation. For each monitor resource, this operation returns of a summary of its properties, including its Amazon Resource Name (ARN). You can retrieve a complete set of properties of a monitor resource by specify the monitor's ARN in the DescribeMonitor operation.

See also: AWS API Documentation

Request Syntax

response = client.list_monitors(
    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 maximum number of monitors to include in the response.
  • Filters (list) --

    An array of filters. For each filter, provide a condition and a match statement. The condition is either IS or IS_NOT , which specifies whether to include or exclude the resources that match the statement from the list. The match statement consists of a key and a value.

    Filter properties
    • Condition - The condition to apply. Valid values are IS and IS_NOT .
    • Key - The name of the parameter to filter on. The only valid value is Status .
    • Value - The value to match.

    For example, to list all monitors who's status is ACTIVE, you would specify:

    "Filters": [ { "Condition": "IS", "Key": "Status", "Value": "ACTIVE" } ]
    • (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 the objects that match the statement, respectively. The match statement consists of a key and a value.

      • Key (string) -- [REQUIRED]

        The name of the parameter to filter on.

      • Value (string) -- [REQUIRED]

        The value to match.

      • Condition (string) -- [REQUIRED]

        The condition to apply. To include the objects that match the statement, specify IS . To exclude matching objects, specify IS_NOT .

Return type

dict

Returns

Response Syntax

{
    'Monitors': [
        {
            'MonitorArn': 'string',
            'MonitorName': 'string',
            'ResourceArn': 'string',
            'Status': 'string',
            'CreationTime': datetime(2015, 1, 1),
            'LastModificationTime': datetime(2015, 1, 1)
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) --

    • Monitors (list) --

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

      • (dict) --

        Provides a summary of the monitor properties used in the ListMonitors operation. To get a complete set of properties, call the DescribeMonitor operation, and provide the listed MonitorArn .

        • MonitorArn (string) --

          The Amazon Resource Name (ARN) of the monitor resource.

        • MonitorName (string) --

          The name of the monitor resource.

        • ResourceArn (string) --

          The Amazon Resource Name (ARN) of the predictor being monitored.

        • Status (string) --

          The status of the monitor. States include:

          • ACTIVE
          • ACTIVE_STOPPING , ACTIVE_STOPPED
          • UPDATE_IN_PROGRESS
          • CREATE_PENDING , CREATE_IN_PROGRESS , CREATE_FAILED
          • DELETE_PENDING , DELETE_IN_PROGRESS , DELETE_FAILED
        • CreationTime (datetime) --

          When the monitor resource was created.

        • LastModificationTime (datetime) --

          The last time the monitor resource was modified. The timestamp depends on the status of the job:

          • CREATE_PENDING - The CreationTime .
          • CREATE_IN_PROGRESS - The current timestamp.
          • STOPPED - When the resource stopped.
          • ACTIVE or CREATE_FAILED - When the monitor creation 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.

Exceptions

  • ForecastService.Client.exceptions.InvalidNextTokenException
  • ForecastService.Client.exceptions.InvalidInputException
list_predictor_backtest_export_jobs(**kwargs)

Returns a list of predictor backtest export jobs created using the CreatePredictorBacktestExportJob operation. This operation returns a summary for each backtest export job. You can filter the list using an array of Filter objects.

To retrieve the complete set of properties for a particular backtest export job, use the ARN with the DescribePredictorBacktestExportJob operation.

See also: AWS API Documentation

Request Syntax

response = client.list_predictor_backtest_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, provide a condition and a match statement. The condition is either IS or IS_NOT , which specifies whether to include or exclude the predictor backtest export jobs that match the statement from the list. The match statement consists of a key and a value.

    Filter properties
    • Condition - The condition to apply. Valid values are IS and IS_NOT . To include the predictor backtest export jobs that match the statement, specify IS . To exclude matching predictor backtest export jobs, specify IS_NOT .
    • Key - The name of the parameter to filter on. Valid values are PredictorArn and Status .
    • Value - The value to match.
    • (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 the objects that match the statement, respectively. The match statement consists of a key and a value.

      • Key (string) -- [REQUIRED]

        The name of the parameter to filter on.

      • Value (string) -- [REQUIRED]

        The value to match.

      • Condition (string) -- [REQUIRED]

        The condition to apply. To include the objects that match the statement, specify IS . To exclude matching objects, specify IS_NOT .

Return type

dict

Returns

Response Syntax

{
    'PredictorBacktestExportJobs': [
        {
            'PredictorBacktestExportJobArn': 'string',
            'PredictorBacktestExportJobName': '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) --

    • PredictorBacktestExportJobs (list) --

      An array of objects that summarize the properties of each predictor backtest export job.

      • (dict) --

        Provides a summary of the predictor backtest export job properties used in the ListPredictorBacktestExportJobs operation. To get a complete set of properties, call the DescribePredictorBacktestExportJob operation, and provide the listed PredictorBacktestExportJobArn .

        • PredictorBacktestExportJobArn (string) --

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

        • PredictorBacktestExportJobName (string) --

          The name of the predictor backtest export job.

        • Destination (dict) --

          The destination for an export job. Provide an S3 path, an Identity and Access Management (IAM) role that allows Amazon Forecast to access the location, and an Key Management Service (KMS) key (optional).

          • 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 Identity and Access Management (IAM) role that Amazon Forecast can assume to access the Amazon S3 bucket or files. If you provide a value for the KMSKeyArn key, the role must allow access to the key.

              Passing a role across Amazon Web Services accounts is not allowed. If you pass a role that isn't in your account, you get an InvalidInputException error.

            • KMSKeyArn (string) --

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

        • Status (string) --

          The status of the predictor backtest export job. States include:

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

          Information about any errors that may have occurred during the backtest export.

        • CreationTime (datetime) --

          When the predictor backtest export job was created.

        • LastModificationTime (datetime) --

          The last time the resource was modified. The timestamp depends on the status of the job:

          • CREATE_PENDING - The CreationTime .
          • CREATE_IN_PROGRESS - The current timestamp.
          • CREATE_STOPPING - The current timestamp.
          • CREATE_STOPPED - When the job stopped.
          • ACTIVE or CREATE_FAILED - When the job finished or failed.
    • NextToken (string) --

      Returns this token if the response is truncated. To retrieve the next set of results, use the token in the next request.

Exceptions

  • ForecastService.Client.exceptions.InvalidNextTokenException
  • ForecastService.Client.exceptions.InvalidInputException
list_predictors(**kwargs)

Returns a list of predictors created using the CreateAutoPredictor or CreatePredictor operations. For each predictor, this operation returns a summary of its properties, including its Amazon Resource Name (ARN).

You can retrieve the complete set of properties by using the ARN with the DescribeAutoPredictor and DescribePredictor operations. You can filter the list 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 the predictors that match the statement from the list, respectively. The match statement consists of a key and a value.

    Filter properties
    • Condition - The condition to apply. Valid values are IS and IS_NOT . To include the predictors that match the statement, specify IS . To exclude matching predictors, specify IS_NOT .
    • Key - The name of the parameter to filter on. Valid values are DatasetGroupArn and Status .
    • Value - The value to match.

    For example, to list all predictors whose status is ACTIVE, you would specify:

    "Filters": [ { "Condition": "IS", "Key": "Status", "Value": "ACTIVE" } ]
    • (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 the objects that match the statement, respectively. The match statement consists of a key and a value.

      • Key (string) -- [REQUIRED]

        The name of the parameter to filter on.

      • Value (string) -- [REQUIRED]

        The value to match.

      • Condition (string) -- [REQUIRED]

        The condition to apply. To include the objects that match the statement, specify IS . To exclude matching objects, specify IS_NOT .

Return type

dict

Returns

Response Syntax

{
    'Predictors': [
        {
            'PredictorArn': 'string',
            'PredictorName': 'string',
            'DatasetGroupArn': 'string',
            'IsAutoPredictor': True|False,
            'ReferencePredictorSummary': {
                'Arn': 'string',
                'State': 'Active'|'Deleted'
            },
            '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 that are 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.

        • IsAutoPredictor (boolean) --

          Whether AutoPredictor was used to create the predictor.

        • ReferencePredictorSummary (dict) --

          A summary of the reference predictor used if the predictor was retrained or upgraded.

          • Arn (string) --

            The ARN of the reference predictor.

          • State (string) --

            Whether the reference predictor is Active or Deleted .

        • Status (string) --

          The status of the predictor. States include:

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

          Note

          The Status of the predictor must be ACTIVE before you can use 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) --

          The last time the resource was modified. The timestamp depends on the status of the job:

          • CREATE_PENDING - The CreationTime .
          • CREATE_IN_PROGRESS - The current timestamp.
          • CREATE_STOPPING - The current timestamp.
          • CREATE_STOPPED - When the job stopped.
          • 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.

Exceptions

  • ForecastService.Client.exceptions.InvalidNextTokenException
  • ForecastService.Client.exceptions.InvalidInputException
list_tags_for_resource(**kwargs)

Lists the tags for an Amazon Forecast resource.

See also: AWS API Documentation

Request Syntax

response = client.list_tags_for_resource(
    ResourceArn='string'
)
Parameters
ResourceArn (string) --

[REQUIRED]

The Amazon Resource Name (ARN) that identifies the resource for which to list the tags.

Return type
dict
Returns
Response Syntax
{
    'Tags': [
        {
            'Key': 'string',
            'Value': 'string'
        },
    ]
}

Response Structure

  • (dict) --
    • Tags (list) --

      The tags for the resource.

      • (dict) --

        The optional metadata that you apply to a resource to help you categorize and organize them. Each tag consists of a key and an optional value, both of which you define.

        The following basic restrictions apply to tags:

        • Maximum number of tags per resource - 50.
        • For each resource, each tag key must be unique, and each tag key can have only one value.
        • Maximum key length - 128 Unicode characters in UTF-8.
        • Maximum value length - 256 Unicode characters in UTF-8.
        • If your tagging schema is used across multiple services and resources, remember that other services may have restrictions on allowed characters. Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, and the following characters: + - = . _ : / @.
        • Tag keys and values are case sensitive.
        • Do not use aws: , AWS: , or any upper or lowercase combination of such as a prefix for keys as it is reserved for Amazon Web Services use. You cannot edit or delete tag keys with this prefix. Values can have this prefix. If a tag value has aws as its prefix but the key does not, then Forecast considers it to be a user tag and will count against the limit of 50 tags. Tags with only the key prefix of aws do not count against your tags per resource limit.
        • Key (string) --

          One part of a key-value pair that makes up a tag. A key is a general label that acts like a category for more specific tag values.

        • Value (string) --

          The optional part of a key-value pair that makes up a tag. A value acts as a descriptor within a tag category (key).

Exceptions

  • ForecastService.Client.exceptions.ResourceNotFoundException
  • ForecastService.Client.exceptions.InvalidInputException
list_what_if_analyses(**kwargs)

Returns a list of what-if analyses created using the CreateWhatIfAnalysis operation. For each what-if analysis, this operation returns a summary of its properties, including its Amazon Resource Name (ARN). You can retrieve the complete set of properties by using the what-if analysis ARN with the DescribeWhatIfAnalysis operation.

See also: AWS API Documentation

Request Syntax

response = client.list_what_if_analyses(
    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 the what-if analysis jobs that match the statement from the list, respectively. The match statement consists of a key and a value.

    Filter properties
    • Condition - The condition to apply. Valid values are IS and IS_NOT . To include the what-if analysis jobs that match the statement, specify IS . To exclude matching what-if analysis jobs, specify IS_NOT .
    • Key - The name of the parameter to filter on. Valid values are WhatIfAnalysisArn and Status .
    • Value - The value to match.

    For example, to list all jobs that export a forecast named electricityWhatIf , specify the following filter:

    "Filters": [ { "Condition": "IS", "Key": "WhatIfAnalysisArn", "Value": "arn:aws:forecast:us-west-2:<acct-id>:forecast/electricityWhatIf" } ]
    • (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 the objects that match the statement, respectively. The match statement consists of a key and a value.

      • Key (string) -- [REQUIRED]

        The name of the parameter to filter on.

      • Value (string) -- [REQUIRED]

        The value to match.

      • Condition (string) -- [REQUIRED]

        The condition to apply. To include the objects that match the statement, specify IS . To exclude matching objects, specify IS_NOT .

Return type

dict

Returns

Response Syntax

{
    'WhatIfAnalyses': [
        {
            'WhatIfAnalysisArn': 'string',
            'WhatIfAnalysisName': 'string',
            'ForecastArn': 'string',
            'Status': 'string',
            'Message': 'string',
            'CreationTime': datetime(2015, 1, 1),
            'LastModificationTime': datetime(2015, 1, 1)
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) --

    • WhatIfAnalyses (list) --

      An array of WhatIfAnalysisSummary objects that describe the matched analyses.

      • (dict) --

        Provides a summary of the what-if analysis properties used in the ListWhatIfAnalyses operation. To get the complete set of properties, call the DescribeWhatIfAnalysis operation, and provide the WhatIfAnalysisArn that is listed in the summary.

        • WhatIfAnalysisArn (string) --

          The Amazon Resource Name (ARN) of the what-if analysis.

        • WhatIfAnalysisName (string) --

          The name of the what-if analysis.

        • ForecastArn (string) --

          The Amazon Resource Name (ARN) of the baseline forecast that is being used in this what-if analysis.

        • Status (string) --

          The status of the what-if analysis. States include:

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

          Note

          The Status of the what-if analysis must be ACTIVE before you can access the analysis.

        • Message (string) --

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

        • CreationTime (datetime) --

          When the what-if analysis was created.

        • LastModificationTime (datetime) --

          The last time the resource was modified. The timestamp depends on the status of the job:

          • CREATE_PENDING - The CreationTime .
          • CREATE_IN_PROGRESS - The current timestamp.
          • CREATE_STOPPING - The current timestamp.
          • CREATE_STOPPED - When the job stopped.
          • ACTIVE or CREATE_FAILED - When the job finished or failed.
    • NextToken (string) --

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

Exceptions

  • ForecastService.Client.exceptions.InvalidNextTokenException
  • ForecastService.Client.exceptions.InvalidInputException
list_what_if_forecast_exports(**kwargs)

Returns a list of what-if forecast exports created using the CreateWhatIfForecastExport operation. For each what-if forecast export, this operation returns a summary of its properties, including its Amazon Resource Name (ARN). You can retrieve the complete set of properties by using the what-if forecast export ARN with the DescribeWhatIfForecastExport operation.

See also: AWS API Documentation

Request Syntax

response = client.list_what_if_forecast_exports(
    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 the what-if forecast export jobs that match the statement from the list, respectively. The match statement consists of a key and a value.

    Filter properties
    • Condition - The condition to apply. Valid values are IS and IS_NOT . To include the forecast export jobs that match the statement, specify IS . To exclude matching forecast export jobs, specify IS_NOT .
    • Key - The name of the parameter to filter on. Valid values are WhatIfForecastExportArn and Status .
    • Value - The value to match.

    For example, to list all jobs that export a forecast named electricityWIFExport , specify the following filter:

    "Filters": [ { "Condition": "IS", "Key": "WhatIfForecastExportArn", "Value": "arn:aws:forecast:us-west-2:<acct-id>:forecast/electricityWIFExport" } ]
    • (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 the objects that match the statement, respectively. The match statement consists of a key and a value.

      • Key (string) -- [REQUIRED]

        The name of the parameter to filter on.

      • Value (string) -- [REQUIRED]

        The value to match.

      • Condition (string) -- [REQUIRED]

        The condition to apply. To include the objects that match the statement, specify IS . To exclude matching objects, specify IS_NOT .

Return type

dict

Returns

Response Syntax

{
    'WhatIfForecastExports': [
        {
            'WhatIfForecastExportArn': 'string',
            'WhatIfForecastArns': [
                'string',
            ],
            'WhatIfForecastExportName': '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) --

    • WhatIfForecastExports (list) --

      An array of WhatIfForecastExports objects that describe the matched forecast exports.

      • (dict) --

        Provides a summary of the what-if forecast export properties used in the ListWhatIfForecastExports operation. To get the complete set of properties, call the DescribeWhatIfForecastExport operation, and provide the WhatIfForecastExportArn that is listed in the summary.

        • WhatIfForecastExportArn (string) --

          The Amazon Resource Name (ARN) of the what-if forecast export.

        • WhatIfForecastArns (list) --

          An array of Amazon Resource Names (ARNs) that define the what-if forecasts included in the export.

          • (string) --
        • WhatIfForecastExportName (string) --

          The what-if forecast export name.

        • Destination (dict) --

          The path to the Amazon Simple Storage Service (Amazon 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 Identity and Access Management (IAM) role that Amazon Forecast can assume to access the Amazon S3 bucket or files. If you provide a value for the KMSKeyArn key, the role must allow access to the key.

              Passing a role across Amazon Web Services accounts is not allowed. If you pass a role that isn't in your account, you get an InvalidInputException error.

            • KMSKeyArn (string) --

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

        • Status (string) --

          The status of the what-if forecast export. States include:

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

          Note

          The Status of the what-if analysis must be ACTIVE before you can access the analysis.

        • Message (string) --

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

        • CreationTime (datetime) --

          When the what-if forecast export was created.

        • LastModificationTime (datetime) --

          The last time the resource was modified. The timestamp depends on the status of the job:

          • CREATE_PENDING - The CreationTime .
          • CREATE_IN_PROGRESS - The current timestamp.
          • CREATE_STOPPING - The current timestamp.
          • CREATE_STOPPED - When the job stopped.
          • ACTIVE or CREATE_FAILED - When the job finished or failed.
    • NextToken (string) --

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

Exceptions

  • ForecastService.Client.exceptions.InvalidNextTokenException
  • ForecastService.Client.exceptions.InvalidInputException
list_what_if_forecasts(**kwargs)

Returns a list of what-if forecasts created using the CreateWhatIfForecast operation. For each what-if forecast, this operation returns a summary of its properties, including its Amazon Resource Name (ARN). You can retrieve the complete set of properties by using the what-if forecast ARN with the DescribeWhatIfForecast operation.

See also: AWS API Documentation

Request Syntax

response = client.list_what_if_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 the what-if forecast export jobs that match the statement from the list, respectively. The match statement consists of a key and a value.

    Filter properties
    • Condition - The condition to apply. Valid values are IS and IS_NOT . To include the forecast export jobs that match the statement, specify IS . To exclude matching forecast export jobs, specify IS_NOT .
    • Key - The name of the parameter to filter on. Valid values are WhatIfForecastArn and Status .
    • Value - The value to match.

    For example, to list all jobs that export a forecast named electricityWhatIfForecast , specify the following filter:

    "Filters": [ { "Condition": "IS", "Key": "WhatIfForecastArn", "Value": "arn:aws:forecast:us-west-2:<acct-id>:forecast/electricityWhatIfForecast" } ]
    • (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 the objects that match the statement, respectively. The match statement consists of a key and a value.

      • Key (string) -- [REQUIRED]

        The name of the parameter to filter on.

      • Value (string) -- [REQUIRED]

        The value to match.

      • Condition (string) -- [REQUIRED]

        The condition to apply. To include the objects that match the statement, specify IS . To exclude matching objects, specify IS_NOT .

Return type

dict

Returns

Response Syntax

{
    'WhatIfForecasts': [
        {
            'WhatIfForecastArn': 'string',
            'WhatIfForecastName': 'string',
            'WhatIfAnalysisArn': 'string',
            'Status': 'string',
            'Message': 'string',
            'CreationTime': datetime(2015, 1, 1),
            'LastModificationTime': datetime(2015, 1, 1)
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) --

    • WhatIfForecasts (list) --

      An array of WhatIfForecasts objects that describe the matched forecasts.

      • (dict) --

        Provides a summary of the what-if forecast properties used in the ListWhatIfForecasts operation. To get the complete set of properties, call the DescribeWhatIfForecast operation, and provide the WhatIfForecastArn that is listed in the summary.

        • WhatIfForecastArn (string) --

          The Amazon Resource Name (ARN) of the what-if forecast.

        • WhatIfForecastName (string) --

          The name of the what-if forecast.

        • WhatIfAnalysisArn (string) --

          The Amazon Resource Name (ARN) of the what-if analysis that contains this what-if forecast.

        • Status (string) --

          The status of the what-if forecast. States include:

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

          Note

          The Status of the what-if analysis must be ACTIVE before you can access the analysis.

        • Message (string) --

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

        • CreationTime (datetime) --

          When the what-if forecast was created.

        • LastModificationTime (datetime) --

          The last time the resource was modified. The timestamp depends on the status of the job:

          • CREATE_PENDING - The CreationTime .
          • CREATE_IN_PROGRESS - The current timestamp.
          • CREATE_STOPPING - The current timestamp.
          • CREATE_STOPPED - When the job stopped.
          • ACTIVE or CREATE_FAILED - When the job finished or failed.
    • 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.

Exceptions

  • ForecastService.Client.exceptions.InvalidNextTokenException
  • ForecastService.Client.exceptions.InvalidInputException
resume_resource(**kwargs)

Resumes a stopped monitor resource.

See also: AWS API Documentation

Request Syntax

response = client.resume_resource(
    ResourceArn='string'
)
Parameters
ResourceArn (string) --

[REQUIRED]

The Amazon Resource Name (ARN) of the monitor resource to resume.

Returns
None

Exceptions

  • ForecastService.Client.exceptions.InvalidInputException
  • ForecastService.Client.exceptions.LimitExceededException
  • ForecastService.Client.exceptions.ResourceNotFoundException
  • ForecastService.Client.exceptions.ResourceInUseException
stop_resource(**kwargs)

Stops a resource.

The resource undergoes the following states: CREATE_STOPPING and CREATE_STOPPED . You cannot resume a resource once it has been stopped.

This operation can be applied to the following resources (and their corresponding child resources):

  • Dataset Import Job
  • Predictor Job
  • Forecast Job
  • Forecast Export Job
  • Predictor Backtest Export Job
  • Explainability Job
  • Explainability Export Job

See also: AWS API Documentation

Request Syntax

response = client.stop_resource(
    ResourceArn='string'
)
Parameters
ResourceArn (string) --

[REQUIRED]

The Amazon Resource Name (ARN) that identifies the resource to stop. The supported ARNs are DatasetImportJobArn , PredictorArn , PredictorBacktestExportJobArn , ForecastArn , ForecastExportJobArn , ExplainabilityArn , and ExplainabilityExportArn .

Returns
None

Exceptions

  • ForecastService.Client.exceptions.InvalidInputException
  • ForecastService.Client.exceptions.LimitExceededException
  • ForecastService.Client.exceptions.ResourceNotFoundException
tag_resource(**kwargs)

Associates the specified tags to a resource with the specified resourceArn . If existing tags on a resource are not specified in the request parameters, they are not changed. When a resource is deleted, the tags associated with that resource are also deleted.

See also: AWS API Documentation

Request Syntax

response = client.tag_resource(
    ResourceArn='string',
    Tags=[
        {
            'Key': 'string',
            'Value': 'string'
        },
    ]
)
Parameters
  • ResourceArn (string) --

    [REQUIRED]

    The Amazon Resource Name (ARN) that identifies the resource for which to list the tags.

  • Tags (list) --

    [REQUIRED]

    The tags to add to the resource. A tag is an array of key-value pairs.

    The following basic restrictions apply to tags:

    • Maximum number of tags per resource - 50.
    • For each resource, each tag key must be unique, and each tag key can have only one value.
    • Maximum key length - 128 Unicode characters in UTF-8.
    • Maximum value length - 256 Unicode characters in UTF-8.
    • If your tagging schema is used across multiple services and resources, remember that other services may have restrictions on allowed characters. Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, and the following characters: + - = . _ : / @.
    • Tag keys and values are case sensitive.
    • Do not use aws: , AWS: , or any upper or lowercase combination of such as a prefix for keys as it is reserved for Amazon Web Services use. You cannot edit or delete tag keys with this prefix. Values can have this prefix. If a tag value has aws as its prefix but the key does not, then Forecast considers it to be a user tag and will count against the limit of 50 tags. Tags with only the key prefix of aws do not count against your tags per resource limit.
    • (dict) --

      The optional metadata that you apply to a resource to help you categorize and organize them. Each tag consists of a key and an optional value, both of which you define.

      The following basic restrictions apply to tags:

      • Maximum number of tags per resource - 50.
      • For each resource, each tag key must be unique, and each tag key can have only one value.
      • Maximum key length - 128 Unicode characters in UTF-8.
      • Maximum value length - 256 Unicode characters in UTF-8.
      • If your tagging schema is used across multiple services and resources, remember that other services may have restrictions on allowed characters. Generally allowed characters are: letters, numbers, and spaces representable in UTF-8, and the following characters: + - = . _ : / @.
      • Tag keys and values are case sensitive.
      • Do not use aws: , AWS: , or any upper or lowercase combination of such as a prefix for keys as it is reserved for Amazon Web Services use. You cannot edit or delete tag keys with this prefix. Values can have this prefix. If a tag value has aws as its prefix but the key does not, then Forecast considers it to be a user tag and will count against the limit of 50 tags. Tags with only the key prefix of aws do not count against your tags per resource limit.
      • Key (string) -- [REQUIRED]

        One part of a key-value pair that makes up a tag. A key is a general label that acts like a category for more specific tag values.

      • Value (string) -- [REQUIRED]

        The optional part of a key-value pair that makes up a tag. A value acts as a descriptor within a tag category (key).

Return type

dict

Returns

Response Syntax

{}

Response Structure

  • (dict) --

Exceptions

  • ForecastService.Client.exceptions.ResourceNotFoundException
  • ForecastService.Client.exceptions.LimitExceededException
  • ForecastService.Client.exceptions.InvalidInputException
untag_resource(**kwargs)

Deletes the specified tags from a resource.

See also: AWS API Documentation

Request Syntax

response = client.untag_resource(
    ResourceArn='string',
    TagKeys=[
        'string',
    ]
)
Parameters
  • ResourceArn (string) --

    [REQUIRED]

    The Amazon Resource Name (ARN) that identifies the resource for which to list the tags.

  • TagKeys (list) --

    [REQUIRED]

    The keys of the tags to be removed.

    • (string) --
Return type

dict

Returns

Response Syntax

{}

Response Structure

  • (dict) --

Exceptions

  • ForecastService.Client.exceptions.ResourceNotFoundException
  • ForecastService.Client.exceptions.InvalidInputException
update_dataset_group(**kwargs)

Replaces the datasets in a dataset group with the specified datasets.

Note

The Status of the dataset group must be ACTIVE before you can use the dataset group to create a predictor. 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 the Amazon Resource Names (ARNs) of the datasets to add to the dataset group.

    • (string) --
Return type

dict

Returns

Response Syntax

{}

Response Structure

  • (dict) --

Exceptions

  • ForecastService.Client.exceptions.InvalidInputException
  • ForecastService.Client.exceptions.ResourceNotFoundException
  • ForecastService.Client.exceptions.ResourceInUseException

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 DatasetGroupArn .

        • DatasetGroupArn (string) --

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

        • DatasetGroupName (string) --

          The name of 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 time of the ListDatasetGroups call.

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 the datasets that match the statement from the list, respectively. The match statement consists of a key and a value.

    Filter properties
    • Condition - The condition to apply. Valid values are IS and IS_NOT . To include the datasets that match the statement, specify IS . To exclude matching datasets, specify IS_NOT .
    • Key - The name of the parameter to filter on. Valid values are DatasetArn and Status .
    • Value - The value to match.

    For example, to list all dataset import jobs whose status is ACTIVE, you specify the following filter:

    "Filters": [ { "Condition": "IS", "Key": "Status", "Value": "ACTIVE" } ]
    • (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 the objects that match the statement, respectively. The match statement consists of a key and a value.

      • Key (string) -- [REQUIRED]

        The name of the parameter to filter on.

      • Value (string) -- [REQUIRED]

        The value to match.

      • Condition (string) -- [REQUIRED]

        The condition to apply. To include the objects that match the statement, specify IS . To exclude matching objects, specify IS_NOT .

  • 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),
            'ImportMode': 'FULL'|'INCREMENTAL'
        },
    ],

}

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 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 training data to import and an Identity and Access Management (IAM) role that Amazon Forecast can assume to access the data. The training data must be stored in an Amazon S3 bucket.

          If encryption is used, DataSource includes an Key Management Service (KMS) key.

          • S3Config (dict) --

            The path to the 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 Identity and Access Management (IAM) role that Amazon Forecast can assume to access the Amazon S3 bucket or files. If you provide a value for the KMSKeyArn key, the role must allow access to the key.

              Passing a role across Amazon Web Services accounts is not allowed. If you pass a role that isn't in your account, you get an InvalidInputException error.

            • KMSKeyArn (string) --

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

        • Status (string) --

          The status of the dataset import job. States include:

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

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

        • CreationTime (datetime) --

          When the dataset import job was created.

        • LastModificationTime (datetime) --

          The last time the resource was modified. The timestamp depends on the status of the job:

          • CREATE_PENDING - The CreationTime .
          • CREATE_IN_PROGRESS - The current timestamp.
          • CREATE_STOPPING - The current timestamp.
          • CREATE_STOPPED - When the job stopped.
          • ACTIVE or CREATE_FAILED - When the job finished or failed.
        • ImportMode (string) --

          The import mode of the dataset import job, FULL or INCREMENTAL.

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 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 you create a dataset, LastModificationTime is the same as CreationTime . While data is being imported to the dataset, LastModificationTime is the current time of the ListDatasets call. After a CreateDatasetImportJob operation has finished, LastModificationTime is when the import job completed or failed.

class ForecastService.Paginator.ListExplainabilities
paginator = client.get_paginator('list_explainabilities')
paginate(**kwargs)

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

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, provide a condition and a match statement. The condition is either IS or IS_NOT , which specifies whether to include or exclude the resources that match the statement from the list. The match statement consists of a key and a value.

    Filter properties
    • Condition - The condition to apply. Valid values are IS and IS_NOT .
    • Key - The name of the parameter to filter on. Valid values are ResourceArn and Status .
    • Value - The value to match.
    • (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 the objects that match the statement, respectively. The match statement consists of a key and a value.

      • Key (string) -- [REQUIRED]

        The name of the parameter to filter on.

      • Value (string) -- [REQUIRED]

        The value to match.

      • Condition (string) -- [REQUIRED]

        The condition to apply. To include the objects that match the statement, specify IS . To exclude matching objects, specify IS_NOT .

  • 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

{
    'Explainabilities': [
        {
            'ExplainabilityArn': 'string',
            'ExplainabilityName': 'string',
            'ResourceArn': 'string',
            'ExplainabilityConfig': {
                'TimeSeriesGranularity': 'ALL'|'SPECIFIC',
                'TimePointGranularity': 'ALL'|'SPECIFIC'
            },
            'Status': 'string',
            'Message': 'string',
            'CreationTime': datetime(2015, 1, 1),
            'LastModificationTime': datetime(2015, 1, 1)
        },
    ],

}

Response Structure

  • (dict) --

    • Explainabilities (list) --

      An array of objects that summarize the properties of each Explainability resource.

      • (dict) --

        Provides a summary of the Explainability properties used in the ListExplainabilities operation. To get a complete set of properties, call the DescribeExplainability operation, and provide the listed ExplainabilityArn .

        • ExplainabilityArn (string) --

          The Amazon Resource Name (ARN) of the Explainability.

        • ExplainabilityName (string) --

          The name of the Explainability.

        • ResourceArn (string) --

          The Amazon Resource Name (ARN) of the Predictor or Forecast used to create the Explainability.

        • ExplainabilityConfig (dict) --

          The configuration settings that define the granularity of time series and time points for the Explainability.

          • TimeSeriesGranularity (string) --

            To create an Explainability for all time series in your datasets, use ALL . To create an Explainability for specific time series in your datasets, use SPECIFIC .

            Specify time series by uploading a CSV or Parquet file to an Amazon S3 bucket and set the location within the DataDestination data type.

          • TimePointGranularity (string) --

            To create an Explainability for all time points in your forecast horizon, use ALL . To create an Explainability for specific time points in your forecast horizon, use SPECIFIC .

            Specify time points with the StartDateTime and EndDateTime parameters within the CreateExplainability operation.

        • Status (string) --

          The status of the Explainability. States include:

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

          Information about any errors that may have occurred during the Explainability creation process.

        • CreationTime (datetime) --

          When the Explainability was created.

        • LastModificationTime (datetime) --

          The last time the resource was modified. The timestamp depends on the status of the job:

          • CREATE_PENDING - The CreationTime .
          • CREATE_IN_PROGRESS - The current timestamp.
          • CREATE_STOPPING - The current timestamp.
          • CREATE_STOPPED - When the job stopped.
          • ACTIVE or CREATE_FAILED - When the job finished or failed.

class ForecastService.Paginator.ListExplainabilityExports
paginator = client.get_paginator('list_explainability_exports')
paginate(**kwargs)

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

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, provide a condition and a match statement. The condition is either IS or IS_NOT , which specifies whether to include or exclude resources that match the statement from the list. The match statement consists of a key and a value.

    Filter properties
    • Condition - The condition to apply. Valid values are IS and IS_NOT .
    • Key - The name of the parameter to filter on. Valid values are ResourceArn and Status .
    • Value - The value to match.
    • (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 the objects that match the statement, respectively. The match statement consists of a key and a value.

      • Key (string) -- [REQUIRED]

        The name of the parameter to filter on.

      • Value (string) -- [REQUIRED]

        The value to match.

      • Condition (string) -- [REQUIRED]

        The condition to apply. To include the objects that match the statement, specify IS . To exclude matching objects, specify IS_NOT .

  • 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

{
    'ExplainabilityExports': [
        {
            'ExplainabilityExportArn': 'string',
            'ExplainabilityExportName': '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) --

    • ExplainabilityExports (list) --

      An array of objects that summarize the properties of each Explainability export.

      • (dict) --

        Provides a summary of the Explainability export properties used in the ListExplainabilityExports operation. To get a complete set of properties, call the DescribeExplainabilityExport operation, and provide the ExplainabilityExportArn .

        • ExplainabilityExportArn (string) --

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

        • ExplainabilityExportName (string) --

          The name of the Explainability export

        • Destination (dict) --

          The destination for an export job. Provide an S3 path, an Identity and Access Management (IAM) role that allows Amazon Forecast to access the location, and an Key Management Service (KMS) key (optional).

          • 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 Identity and Access Management (IAM) role that Amazon Forecast can assume to access the Amazon S3 bucket or files. If you provide a value for the KMSKeyArn key, the role must allow access to the key.

              Passing a role across Amazon Web Services accounts is not allowed. If you pass a role that isn't in your account, you get an InvalidInputException error.

            • KMSKeyArn (string) --

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

        • Status (string) --

          The status of the Explainability export. States include:

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

          Information about any errors that may have occurred during the Explainability export.

        • CreationTime (datetime) --

          When the Explainability was created.

        • LastModificationTime (datetime) --

          The last time the resource was modified. The timestamp depends on the status of the job:

          • CREATE_PENDING - The CreationTime .
          • CREATE_IN_PROGRESS - The current timestamp.
          • CREATE_STOPPING - The current timestamp.
          • CREATE_STOPPED - When the job stopped.
          • ACTIVE or CREATE_FAILED - When the job finished or failed.

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 the forecast export jobs that match the statement from the list, respectively. The match statement consists of a key and a value.

    Filter properties
    • Condition - The condition to apply. Valid values are IS and IS_NOT . To include the forecast export jobs that match the statement, specify IS . To exclude matching forecast export jobs, specify IS_NOT .
    • Key - The name of the parameter to filter on. Valid values are ForecastArn and Status .
    • Value - The value to match.

    For example, to list all jobs that export a forecast named electricityforecast , specify the following filter:

    "Filters": [ { "Condition": "IS", "Key": "ForecastArn", "Value": "arn:aws:forecast:us-west-2:<acct-id>:forecast/electricityforecast" } ]
    • (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 the objects that match the statement, respectively. The match statement consists of a key and a value.

      • Key (string) -- [REQUIRED]

        The name of the parameter to filter on.

      • Value (string) -- [REQUIRED]

        The value to match.

      • Condition (string) -- [REQUIRED]

        The condition to apply. To include the objects that match the statement, specify IS . To exclude matching objects, specify IS_NOT .

  • 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 Amazon Simple Storage Service (Amazon 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 Identity and Access Management (IAM) role that Amazon Forecast can assume to access the Amazon S3 bucket or files. If you provide a value for the KMSKeyArn key, the role must allow access to the key.

              Passing a role across Amazon Web Services accounts is not allowed. If you pass a role that isn't in your account, you get an InvalidInputException error.

            • KMSKeyArn (string) --

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

        • Status (string) --

          The status of the forecast export job. States include:

          • ACTIVE
          • CREATE_PENDING , CREATE_IN_PROGRESS , CREATE_FAILED
          • CREATE_STOPPING , CREATE_STOPPED
          • 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 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) --

          The last time the resource was modified. The timestamp depends on the status of the job:

          • CREATE_PENDING - The CreationTime .
          • CREATE_IN_PROGRESS - The current timestamp.
          • CREATE_STOPPING - The current timestamp.
          • CREATE_STOPPED - When the job stopped.
          • ACTIVE or CREATE_FAILED - When the job finished or failed.

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 the forecasts that match the statement from the list, respectively. The match statement consists of a key and a value.

    Filter properties
    • Condition - The condition to apply. Valid values are IS and IS_NOT . To include the forecasts that match the statement, specify IS . To exclude matching forecasts, specify IS_NOT .
    • Key - The name of the parameter to filter on. Valid values are DatasetGroupArn , PredictorArn , and Status .
    • Value - The value to match.

    For example, to list all forecasts whose status is not ACTIVE, you would specify:

    "Filters": [ { "Condition": "IS_NOT", "Key": "Status", "Value": "ACTIVE" } ]
    • (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 the objects that match the statement, respectively. The match statement consists of a key and a value.

      • Key (string) -- [REQUIRED]

        The name of the parameter to filter on.

      • Value (string) -- [REQUIRED]

        The value to match.

      • Condition (string) -- [REQUIRED]

        The condition to apply. To include the objects that match the statement, specify IS . To exclude matching objects, specify IS_NOT .

  • 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',
            'CreatedUsingAutoPredictor': True|False,
            '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 ForecastArn that is listed in the summary.

        • 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.

        • CreatedUsingAutoPredictor (boolean) --

          Whether the Forecast was created from an AutoPredictor.

        • 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
          • CREATE_STOPPING , CREATE_STOPPED
          • 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) --

          The last time the resource was modified. The timestamp depends on the status of the job:

          • CREATE_PENDING - The CreationTime .
          • CREATE_IN_PROGRESS - The current timestamp.
          • CREATE_STOPPING - The current timestamp.
          • CREATE_STOPPED - When the job stopped.
          • ACTIVE or CREATE_FAILED - When the job finished or failed.

class ForecastService.Paginator.ListMonitorEvaluations
paginator = client.get_paginator('list_monitor_evaluations')
paginate(**kwargs)

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

See also: AWS API Documentation

Request Syntax

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

    [REQUIRED]

    The Amazon Resource Name (ARN) of the monitor resource to get results from.

  • Filters (list) --

    An array of filters. For each filter, provide a condition and a match statement. The condition is either IS or IS_NOT , which specifies whether to include or exclude the resources that match the statement from the list. The match statement consists of a key and a value.

    Filter properties
    • Condition - The condition to apply. Valid values are IS and IS_NOT .
    • Key - The name of the parameter to filter on. The only valid value is EvaluationState .
    • Value - The value to match. Valid values are only SUCCESS or FAILURE .

    For example, to list only successful monitor evaluations, you would specify:

    "Filters": [ { "Condition": "IS", "Key": "EvaluationState", "Value": "SUCCESS" } ]
    • (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 the objects that match the statement, respectively. The match statement consists of a key and a value.

      • Key (string) -- [REQUIRED]

        The name of the parameter to filter on.

      • Value (string) -- [REQUIRED]

        The value to match.

      • Condition (string) -- [REQUIRED]

        The condition to apply. To include the objects that match the statement, specify IS . To exclude matching objects, specify IS_NOT .

  • 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

{
    'PredictorMonitorEvaluations': [
        {
            'ResourceArn': 'string',
            'MonitorArn': 'string',
            'EvaluationTime': datetime(2015, 1, 1),
            'EvaluationState': 'string',
            'WindowStartDatetime': datetime(2015, 1, 1),
            'WindowEndDatetime': datetime(2015, 1, 1),
            'PredictorEvent': {
                'Detail': 'string',
                'Datetime': datetime(2015, 1, 1)
            },
            'MonitorDataSource': {
                'DatasetImportJobArn': 'string',
                'ForecastArn': 'string',
                'PredictorArn': 'string'
            },
            'MetricResults': [
                {
                    'MetricName': 'string',
                    'MetricValue': 123.0
                },
            ],
            'NumItemsEvaluated': 123,
            'Message': 'string'
        },
    ]
}

Response Structure

  • (dict) --

    • PredictorMonitorEvaluations (list) --

      The monitoring results and predictor events collected by the monitor resource during different windows of time.

      For information about monitoring see Viewing Monitoring Results. For more information about retrieving monitoring results see Viewing Monitoring Results.

      • (dict) --

        Describes the results of a monitor evaluation.

        • ResourceArn (string) --

          The Amazon Resource Name (ARN) of the resource to monitor.

        • MonitorArn (string) --

          The Amazon Resource Name (ARN) of the monitor resource.

        • EvaluationTime (datetime) --

          The timestamp that indicates when the monitor evaluation was started.

        • EvaluationState (string) --

          The status of the monitor evaluation. The state can be SUCCESS or FAILURE .

        • WindowStartDatetime (datetime) --

          The timestamp that indicates the start of the window that is used for monitor evaluation.

        • WindowEndDatetime (datetime) --

          The timestamp that indicates the end of the window that is used for monitor evaluation.

        • PredictorEvent (dict) --

          Provides details about a predictor event, such as a retraining.

          • Detail (string) --

            The type of event. For example, Retrain . A retraining event denotes the timepoint when a predictor was retrained. Any monitor results from before the Datetime are from the previous predictor. Any new metrics are for the newly retrained predictor.

          • Datetime (datetime) --

            The timestamp for when the event occurred.

        • MonitorDataSource (dict) --

          The source of the data the monitor resource used during the evaluation.

          • DatasetImportJobArn (string) --

            The Amazon Resource Name (ARN) of the dataset import job used to import the data that initiated the monitor evaluation.

          • ForecastArn (string) --

            The Amazon Resource Name (ARN) of the forecast the monitor used during the evaluation.

          • PredictorArn (string) --

            The Amazon Resource Name (ARN) of the predictor resource you are monitoring.

        • MetricResults (list) --

          A list of metrics Forecast calculated when monitoring a predictor. You can compare the value for each metric in the list to the metric's value in the Baseline to see how your predictor's performance is changing.

          • (dict) --

            An individual metric Forecast calculated when monitoring predictor usage. You can compare the value for this metric to the metric's value in the Baseline to see how your predictor's performance is changing.

            For more information about metrics generated by Forecast see Evaluating Predictor Accuracy

            • MetricName (string) --

              The name of the metric.

            • MetricValue (float) --

              The value for the metric.

        • NumItemsEvaluated (integer) --

          The number of items considered during the evaluation.

        • Message (string) --

          Information about any errors that may have occurred during the monitor evaluation.

class ForecastService.Paginator.ListMonitors
paginator = client.get_paginator('list_monitors')
paginate(**kwargs)

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

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, provide a condition and a match statement. The condition is either IS or IS_NOT , which specifies whether to include or exclude the resources that match the statement from the list. The match statement consists of a key and a value.

    Filter properties
    • Condition - The condition to apply. Valid values are IS and IS_NOT .
    • Key - The name of the parameter to filter on. The only valid value is Status .
    • Value - The value to match.

    For example, to list all monitors who's status is ACTIVE, you would specify:

    "Filters": [ { "Condition": "IS", "Key": "Status", "Value": "ACTIVE" } ]
    • (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 the objects that match the statement, respectively. The match statement consists of a key and a value.

      • Key (string) -- [REQUIRED]

        The name of the parameter to filter on.

      • Value (string) -- [REQUIRED]

        The value to match.

      • Condition (string) -- [REQUIRED]

        The condition to apply. To include the objects that match the statement, specify IS . To exclude matching objects, specify IS_NOT .

  • 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

{
    'Monitors': [
        {
            'MonitorArn': 'string',
            'MonitorName': 'string',
            'ResourceArn': 'string',
            'Status': 'string',
            'CreationTime': datetime(2015, 1, 1),
            'LastModificationTime': datetime(2015, 1, 1)
        },
    ],

}

Response Structure

  • (dict) --

    • Monitors (list) --

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

      • (dict) --

        Provides a summary of the monitor properties used in the ListMonitors operation. To get a complete set of properties, call the DescribeMonitor operation, and provide the listed MonitorArn .

        • MonitorArn (string) --

          The Amazon Resource Name (ARN) of the monitor resource.

        • MonitorName (string) --

          The name of the monitor resource.

        • ResourceArn (string) --

          The Amazon Resource Name (ARN) of the predictor being monitored.

        • Status (string) --

          The status of the monitor. States include:

          • ACTIVE
          • ACTIVE_STOPPING , ACTIVE_STOPPED
          • UPDATE_IN_PROGRESS
          • CREATE_PENDING , CREATE_IN_PROGRESS , CREATE_FAILED
          • DELETE_PENDING , DELETE_IN_PROGRESS , DELETE_FAILED
        • CreationTime (datetime) --

          When the monitor resource was created.

        • LastModificationTime (datetime) --

          The last time the monitor resource was modified. The timestamp depends on the status of the job:

          • CREATE_PENDING - The CreationTime .
          • CREATE_IN_PROGRESS - The current timestamp.
          • STOPPED - When the resource stopped.
          • ACTIVE or CREATE_FAILED - When the monitor creation finished or failed.

class ForecastService.Paginator.ListPredictorBacktestExportJobs
paginator = client.get_paginator('list_predictor_backtest_export_jobs')
paginate(**kwargs)

Creates an iterator that will paginate through responses from ForecastService.Client.list_predictor_backtest_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, provide a condition and a match statement. The condition is either IS or IS_NOT , which specifies whether to include or exclude the predictor backtest export jobs that match the statement from the list. The match statement consists of a key and a value.

    Filter properties
    • Condition - The condition to apply. Valid values are IS and IS_NOT . To include the predictor backtest export jobs that match the statement, specify IS . To exclude matching predictor backtest export jobs, specify IS_NOT .
    • Key - The name of the parameter to filter on. Valid values are PredictorArn and Status .
    • Value - The value to match.
    • (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 the objects that match the statement, respectively. The match statement consists of a key and a value.

      • Key (string) -- [REQUIRED]

        The name of the parameter to filter on.

      • Value (string) -- [REQUIRED]

        The value to match.

      • Condition (string) -- [REQUIRED]

        The condition to apply. To include the objects that match the statement, specify IS . To exclude matching objects, specify IS_NOT .

  • 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

{
    'PredictorBacktestExportJobs': [
        {
            'PredictorBacktestExportJobArn': 'string',
            'PredictorBacktestExportJobName': '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) --

    • PredictorBacktestExportJobs (list) --

      An array of objects that summarize the properties of each predictor backtest export job.

      • (dict) --

        Provides a summary of the predictor backtest export job properties used in the ListPredictorBacktestExportJobs operation. To get a complete set of properties, call the DescribePredictorBacktestExportJob operation, and provide the listed PredictorBacktestExportJobArn .

        • PredictorBacktestExportJobArn (string) --

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

        • PredictorBacktestExportJobName (string) --

          The name of the predictor backtest export job.

        • Destination (dict) --

          The destination for an export job. Provide an S3 path, an Identity and Access Management (IAM) role that allows Amazon Forecast to access the location, and an Key Management Service (KMS) key (optional).

          • 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 Identity and Access Management (IAM) role that Amazon Forecast can assume to access the Amazon S3 bucket or files. If you provide a value for the KMSKeyArn key, the role must allow access to the key.

              Passing a role across Amazon Web Services accounts is not allowed. If you pass a role that isn't in your account, you get an InvalidInputException error.

            • KMSKeyArn (string) --

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

        • Status (string) --

          The status of the predictor backtest export job. States include:

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

          Information about any errors that may have occurred during the backtest export.

        • CreationTime (datetime) --

          When the predictor backtest export job was created.

        • LastModificationTime (datetime) --

          The last time the resource was modified. The timestamp depends on the status of the job:

          • CREATE_PENDING - The CreationTime .
          • CREATE_IN_PROGRESS - The current timestamp.
          • CREATE_STOPPING - The current timestamp.
          • CREATE_STOPPED - When the job stopped.
          • ACTIVE or CREATE_FAILED - When the job finished or 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 the predictors that match the statement from the list, respectively. The match statement consists of a key and a value.

    Filter properties
    • Condition - The condition to apply. Valid values are IS and IS_NOT . To include the predictors that match the statement, specify IS . To exclude matching predictors, specify IS_NOT .
    • Key - The name of the parameter to filter on. Valid values are DatasetGroupArn and Status .
    • Value - The value to match.

    For example, to list all predictors whose status is ACTIVE, you would specify:

    "Filters": [ { "Condition": "IS", "Key": "Status", "Value": "ACTIVE" } ]
    • (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 the objects that match the statement, respectively. The match statement consists of a key and a value.

      • Key (string) -- [REQUIRED]

        The name of the parameter to filter on.

      • Value (string) -- [REQUIRED]

        The value to match.

      • Condition (string) -- [REQUIRED]

        The condition to apply. To include the objects that match the statement, specify IS . To exclude matching objects, specify IS_NOT .

  • 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',
            'IsAutoPredictor': True|False,
            'ReferencePredictorSummary': {
                'Arn': 'string',
                'State': 'Active'|'Deleted'
            },
            '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 that are 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.

        • IsAutoPredictor (boolean) --

          Whether AutoPredictor was used to create the predictor.

        • ReferencePredictorSummary (dict) --

          A summary of the reference predictor used if the predictor was retrained or upgraded.

          • Arn (string) --

            The ARN of the reference predictor.

          • State (string) --

            Whether the reference predictor is Active or Deleted .

        • Status (string) --

          The status of the predictor. States include:

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

          Note

          The Status of the predictor must be ACTIVE before you can use 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) --

          The last time the resource was modified. The timestamp depends on the status of the job:

          • CREATE_PENDING - The CreationTime .
          • CREATE_IN_PROGRESS - The current timestamp.
          • CREATE_STOPPING - The current timestamp.
          • CREATE_STOPPED - When the job stopped.
          • ACTIVE or CREATE_FAILED - When the job finished or failed.

class ForecastService.Paginator.ListWhatIfAnalyses
paginator = client.get_paginator('list_what_if_analyses')
paginate(**kwargs)

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

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 the what-if analysis jobs that match the statement from the list, respectively. The match statement consists of a key and a value.

    Filter properties
    • Condition - The condition to apply. Valid values are IS and IS_NOT . To include the what-if analysis jobs that match the statement, specify IS . To exclude matching what-if analysis jobs, specify IS_NOT .
    • Key - The name of the parameter to filter on. Valid values are WhatIfAnalysisArn and Status .
    • Value - The value to match.

    For example, to list all jobs that export a forecast named electricityWhatIf , specify the following filter:

    "Filters": [ { "Condition": "IS", "Key": "WhatIfAnalysisArn", "Value": "arn:aws:forecast:us-west-2:<acct-id>:forecast/electricityWhatIf" } ]
    • (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 the objects that match the statement, respectively. The match statement consists of a key and a value.

      • Key (string) -- [REQUIRED]

        The name of the parameter to filter on.

      • Value (string) -- [REQUIRED]

        The value to match.

      • Condition (string) -- [REQUIRED]

        The condition to apply. To include the objects that match the statement, specify IS . To exclude matching objects, specify IS_NOT .

  • 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

{
    'WhatIfAnalyses': [
        {
            'WhatIfAnalysisArn': 'string',
            'WhatIfAnalysisName': 'string',
            'ForecastArn': 'string',
            'Status': 'string',
            'Message': 'string',
            'CreationTime': datetime(2015, 1, 1),
            'LastModificationTime': datetime(2015, 1, 1)
        },
    ],

}

Response Structure

  • (dict) --

    • WhatIfAnalyses (list) --

      An array of WhatIfAnalysisSummary objects that describe the matched analyses.

      • (dict) --

        Provides a summary of the what-if analysis properties used in the ListWhatIfAnalyses operation. To get the complete set of properties, call the DescribeWhatIfAnalysis operation, and provide the WhatIfAnalysisArn that is listed in the summary.

        • WhatIfAnalysisArn (string) --

          The Amazon Resource Name (ARN) of the what-if analysis.

        • WhatIfAnalysisName (string) --

          The name of the what-if analysis.

        • ForecastArn (string) --

          The Amazon Resource Name (ARN) of the baseline forecast that is being used in this what-if analysis.

        • Status (string) --

          The status of the what-if analysis. States include:

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

          Note

          The Status of the what-if analysis must be ACTIVE before you can access the analysis.

        • Message (string) --

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

        • CreationTime (datetime) --

          When the what-if analysis was created.

        • LastModificationTime (datetime) --

          The last time the resource was modified. The timestamp depends on the status of the job:

          • CREATE_PENDING - The CreationTime .
          • CREATE_IN_PROGRESS - The current timestamp.
          • CREATE_STOPPING - The current timestamp.
          • CREATE_STOPPED - When the job stopped.
          • ACTIVE or CREATE_FAILED - When the job finished or failed.

class ForecastService.Paginator.ListWhatIfForecastExports
paginator = client.get_paginator('list_what_if_forecast_exports')
paginate(**kwargs)

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

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 the what-if forecast export jobs that match the statement from the list, respectively. The match statement consists of a key and a value.

    Filter properties
    • Condition - The condition to apply. Valid values are IS and IS_NOT . To include the forecast export jobs that match the statement, specify IS . To exclude matching forecast export jobs, specify IS_NOT .
    • Key - The name of the parameter to filter on. Valid values are WhatIfForecastExportArn and Status .
    • Value - The value to match.

    For example, to list all jobs that export a forecast named electricityWIFExport , specify the following filter:

    "Filters": [ { "Condition": "IS", "Key": "WhatIfForecastExportArn", "Value": "arn:aws:forecast:us-west-2:<acct-id>:forecast/electricityWIFExport" } ]
    • (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 the objects that match the statement, respectively. The match statement consists of a key and a value.

      • Key (string) -- [REQUIRED]

        The name of the parameter to filter on.

      • Value (string) -- [REQUIRED]

        The value to match.

      • Condition (string) -- [REQUIRED]

        The condition to apply. To include the objects that match the statement, specify IS . To exclude matching objects, specify IS_NOT .

  • 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

{
    'WhatIfForecastExports': [
        {
            'WhatIfForecastExportArn': 'string',
            'WhatIfForecastArns': [
                'string',
            ],
            'WhatIfForecastExportName': '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) --

    • WhatIfForecastExports (list) --

      An array of WhatIfForecastExports objects that describe the matched forecast exports.

      • (dict) --

        Provides a summary of the what-if forecast export properties used in the ListWhatIfForecastExports operation. To get the complete set of properties, call the DescribeWhatIfForecastExport operation, and provide the WhatIfForecastExportArn that is listed in the summary.

        • WhatIfForecastExportArn (string) --

          The Amazon Resource Name (ARN) of the what-if forecast export.

        • WhatIfForecastArns (list) --

          An array of Amazon Resource Names (ARNs) that define the what-if forecasts included in the export.

          • (string) --
        • WhatIfForecastExportName (string) --

          The what-if forecast export name.

        • Destination (dict) --

          The path to the Amazon Simple Storage Service (Amazon 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 Identity and Access Management (IAM) role that Amazon Forecast can assume to access the Amazon S3 bucket or files. If you provide a value for the KMSKeyArn key, the role must allow access to the key.

              Passing a role across Amazon Web Services accounts is not allowed. If you pass a role that isn't in your account, you get an InvalidInputException error.

            • KMSKeyArn (string) --

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

        • Status (string) --

          The status of the what-if forecast export. States include:

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

          Note

          The Status of the what-if analysis must be ACTIVE before you can access the analysis.

        • Message (string) --

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

        • CreationTime (datetime) --

          When the what-if forecast export was created.

        • LastModificationTime (datetime) --

          The last time the resource was modified. The timestamp depends on the status of the job:

          • CREATE_PENDING - The CreationTime .
          • CREATE_IN_PROGRESS - The current timestamp.
          • CREATE_STOPPING - The current timestamp.
          • CREATE_STOPPED - When the job stopped.
          • ACTIVE or CREATE_FAILED - When the job finished or failed.

class ForecastService.Paginator.ListWhatIfForecasts
paginator = client.get_paginator('list_what_if_forecasts')
paginate(**kwargs)

Creates an iterator that will paginate through responses from ForecastService.Client.list_what_if_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 the what-if forecast export jobs that match the statement from the list, respectively. The match statement consists of a key and a value.

    Filter properties
    • Condition - The condition to apply. Valid values are IS and IS_NOT . To include the forecast export jobs that match the statement, specify IS . To exclude matching forecast export jobs, specify IS_NOT .
    • Key - The name of the parameter to filter on. Valid values are WhatIfForecastArn and Status .
    • Value - The value to match.

    For example, to list all jobs that export a forecast named electricityWhatIfForecast , specify the following filter:

    "Filters": [ { "Condition": "IS", "Key": "WhatIfForecastArn", "Value": "arn:aws:forecast:us-west-2:<acct-id>:forecast/electricityWhatIfForecast" } ]
    • (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 the objects that match the statement, respectively. The match statement consists of a key and a value.

      • Key (string) -- [REQUIRED]

        The name of the parameter to filter on.

      • Value (string) -- [REQUIRED]

        The value to match.

      • Condition (string) -- [REQUIRED]

        The condition to apply. To include the objects that match the statement, specify IS . To exclude matching objects, specify IS_NOT .

  • 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

{
    'WhatIfForecasts': [
        {
            'WhatIfForecastArn': 'string',
            'WhatIfForecastName': 'string',
            'WhatIfAnalysisArn': 'string',
            'Status': 'string',
            'Message': 'string',
            'CreationTime': datetime(2015, 1, 1),
            'LastModificationTime': datetime(2015, 1, 1)
        },
    ],

}

Response Structure

  • (dict) --

    • WhatIfForecasts (list) --

      An array of WhatIfForecasts objects that describe the matched forecasts.

      • (dict) --

        Provides a summary of the what-if forecast properties used in the ListWhatIfForecasts operation. To get the complete set of properties, call the DescribeWhatIfForecast operation, and provide the WhatIfForecastArn that is listed in the summary.

        • WhatIfForecastArn (string) --

          The Amazon Resource Name (ARN) of the what-if forecast.

        • WhatIfForecastName (string) --

          The name of the what-if forecast.

        • WhatIfAnalysisArn (string) --

          The Amazon Resource Name (ARN) of the what-if analysis that contains this what-if forecast.

        • Status (string) --

          The status of the what-if forecast. States include:

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

          Note

          The Status of the what-if analysis must be ACTIVE before you can access the analysis.

        • Message (string) --

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

        • CreationTime (datetime) --

          When the what-if forecast was created.

        • LastModificationTime (datetime) --

          The last time the resource was modified. The timestamp depends on the status of the job:

          • CREATE_PENDING - The CreationTime .
          • CREATE_IN_PROGRESS - The current timestamp.
          • CREATE_STOPPING - The current timestamp.
          • CREATE_STOPPED - When the job stopped.
          • ACTIVE or CREATE_FAILED - When the job finished or failed.