Create Dataset Import Job
forecastservice_create_dataset_import_job | R Documentation |
Imports your training data to an Amazon Forecast dataset¶
Description¶
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 list_dataset_import_jobs
operation.
Usage¶
forecastservice_create_dataset_import_job(DatasetImportJobName,
DatasetArn, DataSource, TimestampFormat, TimeZone,
UseGeolocationForTimeZone, GeolocationFormat, Tags, Format, ImportMode)
Arguments¶
DatasetImportJobName |
[required] The name for the dataset import job. We recommend
including the current timestamp in the name, for example, |
DatasetArn |
[required] The Amazon Resource Name (ARN) of the Amazon Forecast dataset that you want to import data to. |
DataSource |
[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, |
TimestampFormat |
The format of timestamps in the dataset. The format that you
specify depends on the
If the format isn't specified, Amazon Forecast expects the format to be "yyyy-MM-dd HH:mm:ss". |
TimeZone |
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 |
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 |
The format of the geolocation attribute. The geolocation attribute can be formatted in one of two ways:
|
Tags |
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:
|
Format |
The format of the imported data, CSV or PARQUET. The default value is CSV. |
ImportMode |
Specifies whether the dataset import job is a |
Value¶
A list with the following syntax:
list(
DatasetImportJobArn = "string"
)
Request syntax¶
svc$create_dataset_import_job(
DatasetImportJobName = "string",
DatasetArn = "string",
DataSource = list(
S3Config = list(
Path = "string",
RoleArn = "string",
KMSKeyArn = "string"
)
),
TimestampFormat = "string",
TimeZone = "string",
UseGeolocationForTimeZone = TRUE|FALSE,
GeolocationFormat = "string",
Tags = list(
list(
Key = "string",
Value = "string"
)
),
Format = "string",
ImportMode = "FULL"|"INCREMENTAL"
)