AWS Fundamentals Logo
AWS Fundamentals
AWS::Forecast::DatasetGroup

Forecast DatasetGroup

Represents a dataset group that holds a collection of related datasets

Properties

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

Filter:
PropertyTypeFlags
DatasetGroupName
string
RequiredCreate-only
Domain
string
Required
DatasetArns
Array<string>
Tags
Array<Tag>

Return Values

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

AttributeTypeDescription
DatasetGroupArnstringThe Amazon Resource Name (ARN) of the dataset group to delete.

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::DatasetGroup

Resources:
  MyResource:
    Type: AWS::Forecast::DatasetGroup
    Properties:
      DatasetGroupName: "my-datasetgroupname"
      Domain: "RETAIL"
      Tags:
        - Key: Environment
          Value: Production

Required IAM Permissions

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

create

forecast:CreateDatasetGroup

read

forecast:DescribeDatasetGroup

update

forecast:UpdateDatasetGroup

delete

forecast:DeleteDatasetGroup

list

forecast:ListDatasetGroups

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
Properties5
Required2
TaggingNot supported
Primary IDDatasetGroupArn

Supported Operations

CreateReadUpdateDeleteList

Immutable After Creation

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

DatasetGroupName

Related Resources

External Links