创建端点 - Amazon SageMaker

创建端点

完成模型和端点配置后,可使用 CreateEndpoint API 创建端点。端点名称在 AWS 账户的一个 AWS 区域内必须是唯一的。

下文将使用在请求中指定的端点配置创建端点。Amazon SageMaker 使用端点来预置资源和部署模型。

# The name of the endpoint.The name must be unique within an AWS Region in your AWS account. endpoint_name = '<endpoint-name>' # The name of the endpoint configuration associated with this endpoint. endpoint_config_name='<endpoint-config-name>' create_endpoint_response = sagemaker_client.create_endpoint( EndpointName=endpoint_name, EndpointConfigName=endpoint_config_name)

当您调用 CreateEndpoint API 时,Amazon SageMaker 异步推理会发送测试通知,以检查您是否配置了 Amazon SNS 主题。Amazon SageMaker 异步推理还会在调用 UpdateEndpointUpdateEndpointWeightsAndCapacities 后发送测试通知。这可以让 SageMaker 检查您是否拥有所需的权限。通知可以直接忽略。测试通知格式如下:

{ "eventVersion":"1.0", "eventSource":"aws:sagemaker", "eventName":"TestNotification" }