aws.forecast.describe_dataset
Example SQL Queries
SELECT * FROMaws.forecast.describe_datasetWHERE"dataset_arn" = 'VALUE';Description
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
Table Definition
| Column Name | Column Data Type |
|---|---|
| dataset_arn Required Input Column The Amazon Resource Name (ARN) of the dataset. | VARCHAR |
| _aws_profile Input Column The AWS profile defines the AWS identity used. It can be defined via credentials or by assuming a IAM role. | STRUCT( |
Show child fields
| |
| _aws_region Input Column The AWS region to use. | VARCHAR |
| creation_time When the dataset was created. | TIMESTAMP_S |
| data_frequency 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. | VARCHAR |
| dataset_name The name of the dataset. | VARCHAR |
| dataset_type The dataset type. | VARCHAR |
| domain The domain associated with the dataset. | VARCHAR |
| encryption_config The Key Management Service (KMS) key and the Identity and Access Management (IAM) role that Amazon Forecast can assume to access the key. | STRUCT( |
Show child fields
| |
| last_modification_time 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. | TIMESTAMP_S |
| schema An array of SchemaAttribute objects that specify the dataset fields. Each SchemaAttribute specifies the name and data type of a field. | STRUCT( |
Show child fields
| |
| status The status of the dataset. States include:
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. The Status of the dataset must be ACTIVE before you can import training data. | VARCHAR |