dataset_import_jobs
Creates, updates, deletes, gets or lists a dataset_import_jobs resource.
Overview
| Name | dataset_import_jobs |
| Type | Resource |
| Id | aws.forecast.dataset_import_jobs |
Fields
The following fields are returned by SELECT queries:
- describe_dataset_import_job
- list_dataset_import_jobs
| Name | Datatype | Description |
|---|---|---|
creation_time | string (date-time) | When the dataset import job was created. |
data_size | number (double) | The size of the dataset in gigabytes (GB) after the import job has finished. |
data_source | object | 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. |
dataset_arn | string | The Amazon Resource Name (ARN) of the dataset that the training data was imported to. (pattern: <code>arn:([a-z\d-]+):forecast:.:.:.+</code>) |
dataset_import_job_arn | string | The ARN of the dataset import job. (pattern: <code>arn:([a-z\d-]+):forecast:.:.:.+</code>) |
dataset_import_job_name | string | The name of the dataset import job. (pattern: <code>^[a-zA-Z][a-zA-Z0-9_]*</code>) |
estimated_time_remaining_in_minutes | integer (int64) | The estimated time remaining in minutes for the dataset import job to complete. |
field_statistics | object | Statistical information about each field in the input data. |
format | string | The format of the imported data, CSV or PARQUET. (pattern: <code>^CSV|PARQUET$</code>) |
geolocation_format | string | The format of the geolocation attribute. Valid Values:"LAT_LONG" and "CC_POSTALCODE". (pattern: <code>^[a-zA-Z0-9_]+$</code>) |
import_mode | string | The import mode of the dataset import job, FULL or INCREMENTAL. (FULL, INCREMENTAL) |
last_modification_time | string (date-time) | 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. |
message | string | If an error occurred, an informational message about the error. |
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 |
time_zone | string | The single time zone applied to every item in the dataset (pattern: <code>^[a-zA-Z0-9/+-_]+$</code>) |
timestamp_format | 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 (pattern: <code>^[a-zA-Z0-9-:.,'\s]+$</code>) |
use_geolocation_for_time_zone | boolean | Whether TimeZone is automatically derived from the geolocation attribute. |
| Name | Datatype | Description |
|---|---|---|
creation_time | string (date-time) | When the dataset import job was created. |
data_source | object | 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. |
dataset_import_job_arn | string | The Amazon Resource Name (ARN) of the dataset import job. (pattern: <code>arn:([a-z\d-]+):forecast:.:.:.+</code>) |
dataset_import_job_name | string | The name of the dataset import job. (pattern: <code>^[a-zA-Z][a-zA-Z0-9_]*</code>) |
import_mode | string | The import mode of the dataset import job, FULL or INCREMENTAL. (FULL, INCREMENTAL) |
last_modification_time | string (date-time) | 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. |
message | string | If an error occurred, an informational message about the error. |
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 |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_dataset_import_job | select | region | 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. | |
list_dataset_import_jobs | select | region | 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. | |
create_dataset_import_job | insert | region, DatasetImportJobName, DatasetArn, DataSource | 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. | |
delete_dataset_import_job | delete | region | 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. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- describe_dataset_import_job
- list_dataset_import_jobs
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.
SELECT
creation_time,
data_size,
data_source,
dataset_arn,
dataset_import_job_arn,
dataset_import_job_name,
estimated_time_remaining_in_minutes,
field_statistics,
format,
geolocation_format,
import_mode,
last_modification_time,
message,
status,
time_zone,
timestamp_format,
use_geolocation_for_time_zone
FROM aws.forecast.dataset_import_jobs
WHERE region = '{{ region }}' -- required
;
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.
SELECT
creation_time,
data_source,
dataset_import_job_arn,
dataset_import_job_name,
import_mode,
last_modification_time,
message,
status
FROM aws.forecast.dataset_import_jobs
WHERE region = '{{ region }}' -- required
;
INSERT examples
- create_dataset_import_job
- Manifest
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.
INSERT INTO aws.forecast.dataset_import_jobs (
DatasetImportJobName,
DatasetArn,
DataSource,
TimestampFormat,
TimeZone,
UseGeolocationForTimeZone,
GeolocationFormat,
Tags,
Format,
ImportMode,
region
)
SELECT
'{{ DatasetImportJobName }}' /* required */,
'{{ DatasetArn }}' /* required */,
'{{ DataSource }}' /* required */,
'{{ TimestampFormat }}',
'{{ TimeZone }}',
{{ UseGeolocationForTimeZone }},
'{{ GeolocationFormat }}',
'{{ Tags }}',
'{{ Format }}',
'{{ ImportMode }}',
'{{ region }}'
RETURNING
dataset_import_job_arn
;
# Description fields are for documentation purposes
- name: dataset_import_jobs
props:
- name: region
value: "{{ region }}"
description: Required parameter for the dataset_import_jobs resource.
- name: DatasetImportJobName
value: "{{ DatasetImportJobName }}"
description: |
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.
- name: DatasetArn
value: "{{ DatasetArn }}"
description: |
The Amazon Resource Name (ARN) of the Amazon Forecast dataset that you want to import data to.
- name: DataSource
description: |
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.
value:
S3Config:
Path: "{{ Path }}"
RoleArn: "{{ RoleArn }}"
KMSKeyArn: "{{ KMSKeyArn }}"
- name: TimestampFormat
value: "{{ TimestampFormat }}"
description: |
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".
- name: TimeZone
value: "{{ TimeZone }}"
description: |
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.
- name: UseGeolocationForTimeZone
value: {{ UseGeolocationForTimeZone }}
description: |
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.
- name: GeolocationFormat
value: "{{ GeolocationFormat }}"
description: |
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).
- name: Tags
description: |
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.
value:
- Key: "{{ Key }}"
Value: "{{ Value }}"
- name: Format
value: "{{ Format }}"
description: |
The format of the imported data, CSV or PARQUET. The default value is CSV.
- name: ImportMode
value: "{{ ImportMode }}"
description: |
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.
valid_values: ['FULL', 'INCREMENTAL']
DELETE examples
- delete_dataset_import_job
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.
DELETE FROM aws.forecast.dataset_import_jobs
WHERE region = '{{ region }}' --required
;