AWS Fundamentals Logo
AWS Fundamentals
AWS::SCN::Dataset

SCN Dataset

Represents an AWS Supply Chain data lake dataset.

Properties

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

Filter:
PropertyTypeFlags
InstanceId
string
RequiredCreate-only
Name
string
RequiredCreate-only
Namespace
string
RequiredCreate-only
Description
string
PartitionSpec
object
Create-only
Schema
object
Create-only
Tags
Array<Tag>

Return Values

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

AttributeTypeDescription
ArnstringThe Amazon Resource Name (ARN) of the dataset.
CreatedTimestringThe creation time of the dataset.
LastModifiedTimestringThe last modified time of the dataset.

Sample CloudFormation Template

A minimal template with required properties and common optional ones.

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

Resources:
  MyResource:
    Type: AWS::SCN::Dataset
    Properties:
      InstanceId: "my-instanceid"
      Namespace: "my-namespace"
      Name: "my-name"
      Tags:
        - Key: Environment
          Value: Production
      Description: !Ref "AWS::StackName"

Required IAM Permissions

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

create

scn:CreateDataLakeDatasetscn:GetDataLakeDatasetscn:TagResourcescn:ListTagsForResource

read

scn:GetDataLakeDatasetscn:ListTagsForResource

update

scn:UpdateDataLakeDatasetscn:GetDataLakeDatasetscn:TagResourcescn:UntagResourcescn:ListTagsForResource

delete

scn:DeleteDataLakeDatasetscn:GetDataLakeDataset

list

scn:ListDataLakeDatasets

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

ServiceSCN
Properties10
Required3
TaggingSupported
Primary IDArn

Supported Operations

CreateReadUpdateDeleteList

Immutable After Creation

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

InstanceIdNamespaceNameSchemaPartitionSpec

Related Resources

External Links