AWS Fundamentals Logo
AWS Fundamentals
AWS::Forecast::Dataset

Forecast Dataset

Resource Type Definition for AWS::Forecast::Dataset

Properties

7 configurable properties. 4 required. Click a row to see details.

Filter:
PropertyTypeFlags
DatasetName
string
RequiredCreate-only
DatasetType
string
Required
Domain
string
Required
Schema
object
Required
DataFrequency
string
EncryptionConfig
object
Tags
Array<object>

Return Values

Values returned after the resource is created. Access these with Fn::GetAtt.

AttributeTypeDescription
Arnstring-

Sample CloudFormation Template

A minimal template with required properties and common optional ones.

template.yaml
AWSTemplateFormatVersion: "2010-09-09"
Description: Sample template for AWS::Forecast::Dataset

Resources:
  MyResource:
    Type: AWS::Forecast::Dataset
    Properties:
      DatasetName: "my-datasetname"
      DatasetType: "TARGET_TIME_SERIES"
      Domain: "RETAIL"
      Schema: {}
      Tags:
        - Key: Environment
          Value: Production

Required IAM Permissions

Permissions CloudFormation needs in your IAM role to manage this resource.

create

forecast:CreateDataset

read

forecast:DescribeDataset

delete

forecast:DeleteDataset

list

forecast:ListDatasets

Learn AWS the Practical Way

Our bi-weekly newsletter teaches hands-on AWS fundamentals. No certification fluff - just practical knowledge.

Subscribe to Newsletter

Quick Facts

ServiceForecast
Properties8
Required4
TaggingNot supported
Primary IDArn

Supported Operations

CreateReadDeleteList

Immutable After Creation

These properties cannot be changed after the resource is created. Updating them triggers a replacement.

DatasetName

Related Resources

External Links