AWS Fundamentals Logo
AWS Fundamentals
AWS::SageMaker::App

SageMaker App

Resource Type definition for AWS::SageMaker::App

Properties

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

Filter:
PropertyTypeFlags
AppName
string
RequiredCreate-only
AppType
string
RequiredCreate-only
DomainId
string
RequiredCreate-only
UserProfileName
string
RequiredCreate-only
RecoveryMode
boolean
ResourceSpec
ResourceSpec
Create-only
Tags
Array<Tag>

Return Values

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

AttributeTypeDescription
AppArnstringThe Amazon Resource Name (ARN) of the app.
BuiltInLifecycleConfigArnstringThe lifecycle configuration that runs before the default lifecycle configuration.

Sample CloudFormation Template

A minimal template with required properties and common optional ones.

template.yaml
AWSTemplateFormatVersion: "2010-09-09"
Description: Sample template for AWS::SageMaker::App

Resources:
  MyResource:
    Type: AWS::SageMaker::App
    Properties:
      AppName: "my-appname"
      AppType: "JupyterServer"
      DomainId: "my-domainid"
      UserProfileName: "my-userprofilename"
      Tags:
        - Key: Environment
          Value: Production

Required IAM Permissions

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

create

sagemaker:CreateAppsagemaker:DescribeAppsagemaker:AddTagssagemaker:ListTags

read

sagemaker:DescribeAppsagemaker:DescribeAppsagemaker:ListTags

update

sagemaker:DescribeAppsagemaker:AddTagssagemaker:DeleteTagssagemaker:ListTags

delete

sagemaker:DeleteAppsagemaker:DescribeAppsagemaker:DeleteTagssagemaker:ListTags

list

sagemaker:ListAppssagemaker:ListTags

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

ServiceSageMaker
Properties9
Required4
TaggingSupported
Primary IDAppName

Supported Operations

CreateReadUpdateDeleteList

Immutable After Creation

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

AppNameAppTypeDomainIdUserProfileNameResourceSpec

External Links