AWS Fundamentals Logo
AWS Fundamentals
AWS::SCN::Namespace

SCN Namespace

Definition of AWS::SCN::Namespace Resource Type

Properties

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

Filter:
PropertyTypeFlags
InstanceId
string
RequiredCreate-only
Name
string
RequiredCreate-only
Description
string
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 namespace.
CreatedTimestringThe creation time of the namespace.
LastModifiedTimestringThe last modified time of the namespace.

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

Resources:
  MyResource:
    Type: AWS::SCN::Namespace
    Properties:
      InstanceId: "my-instanceid"
      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:CreateDataLakeNamespacescn:GetDataLakeNamespacescn:TagResourcescn:ListTagsForResource

read

scn:GetDataLakeNamespacescn:ListTagsForResource

update

scn:UpdateDataLakeNamespacescn:GetDataLakeNamespacescn:TagResourcescn:UntagResourcescn:ListTagsForResource

delete

scn:DeleteDataLakeNamespacescn:GetDataLakeNamespace

list

scn:ListDataLakeNamespaces

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
Properties7
Required2
TaggingSupported
Primary IDArn

Supported Operations

CreateReadUpdateDeleteList

Immutable After Creation

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

InstanceIdName

Related Resources

External Links