AWS Fundamentals Logo
AWS Fundamentals
AWS::SageMaker::Algorithm

SageMaker Algorithm

Resource Type definition for AWS::SageMaker::Algorithm

Properties

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

Filter:
PropertyTypeFlags
AlgorithmName
string
RequiredCreate-only
TrainingSpecification
TrainingSpecification
RequiredCreate-only
AlgorithmDescription
string
Create-only
CertifyForMarketplace
boolean
Create-only
InferenceSpecification
InferenceSpecification
Create-only
Tags
Array<Tag>

Return Values

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

AttributeTypeDescription
AlgorithmArnstringThe Amazon Resource Name (ARN) of the algorithm.
CreationTimestringA timestamp specifying when the algorithm was created.

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

Resources:
  MyResource:
    Type: AWS::SageMaker::Algorithm
    Properties:
      AlgorithmName: "my-algorithmname"
      TrainingSpecification: "value"
      Tags:
        - Key: Environment
          Value: Production

Required IAM Permissions

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

create

sagemaker:CreateAlgorithmsagemaker:DescribeAlgorithmsagemaker:AddTags

read

sagemaker:DescribeAlgorithmsagemaker:ListTags

update

sagemaker:DescribeAlgorithmsagemaker:AddTagssagemaker:DeleteTagssagemaker:ListTags

delete

sagemaker:DeleteAlgorithmsagemaker:DescribeAlgorithm

list

sagemaker:ListAlgorithms

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
Properties8
Required2
TaggingSupported
Primary IDAlgorithmArn

Supported Operations

CreateReadUpdateDeleteList

Immutable After Creation

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

AlgorithmNameAlgorithmDescriptionTrainingSpecificationInferenceSpecificationCertifyForMarketplace

External Links