AWS Fundamentals Logo
AWS Fundamentals
AWS::SageMaker::Endpoint

SageMaker Endpoint

Resource Type definition for AWS::SageMaker::Endpoint

Properties

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

Filter:
PropertyTypeFlags
EndpointConfigName
string
Required
DeploymentConfig
DeploymentConfig
ExcludeRetainedVariantProperties
Array<VariantProperty>
Write-only
RetainAllVariantProperties
boolean
Write-only
RetainDeploymentConfig
boolean
Write-only
Tags
Array<Tag>

Return Values

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

AttributeTypeDescription
EndpointArnstringThe Amazon Resource Name (ARN) of the endpoint.
EndpointNamestringThe name of the SageMaker endpoint. This name must be unique within an AWS Region.

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

Resources:
  MyResource:
    Type: AWS::SageMaker::Endpoint
    Properties:
      EndpointConfigName: "my-endpointconfigname"
      Tags:
        - Key: Environment
          Value: Production

Required IAM Permissions

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

create

sagemaker:CreateEndpointsagemaker:DescribeEndpointsagemaker:AddTags

read

sagemaker:DescribeEndpointsagemaker:ListTags

update

sagemaker:UpdateEndpointsagemaker:DescribeEndpointsagemaker:AddTagssagemaker:DeleteTags

delete

sagemaker:DeleteEndpointsagemaker:DescribeEndpoint

list

sagemaker:ListEndpoints

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
Required1
TaggingSupported
Primary IDEndpointArn

Supported Operations

CreateReadUpdateDeleteList

Immutable After Creation

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

EndpointName

External Links