

기계 번역으로 제공되는 번역입니다. 제공된 번역과 원본 영어의 내용이 상충하는 경우에는 영어 버전이 우선합니다.

# 비동기 엔드포인트 업데이트
<a name="async-inference-update-endpoint"></a>

[https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_UpdateEndpoint.html](https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_UpdateEndpoint.html) API를 사용하여 비동기 엔드포인트를 업데이트합니다. 엔드포인트를 업데이트하면 SageMaker AI는 이전 엔드포인트 구성에서 프로비저닝된 리소스를 삭제하기 전에 먼저 사용자가 지정하는 새 엔드포인트 구성을 프로비저닝하고 전환합니다. 활성 상태이거나 엔드포인트에서 `UpdateEndpoint` 또는 `CreateEndpoint` 작업이 수행되는 동안에는 엔드포인트가 있는 `EndpointConfig`를 삭제하지 마세요.

```
# 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>'

sagemaker_client.update_endpoint(
                                EndpointConfigName=endpoint_config_name,
                                EndpointName=endpoint_name
                                )
```

Amazon SageMaker AI는 요청을 받으면 엔드포인트 상태를 **업데이트 중**으로 설정합니다. 비동기 엔드포인트를 업데이트하면 상태가 **InService**로 설정됩니다. 엔드포인트의 상태를 확인하려면 [https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_DescribeEndpoint.html](https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_DescribeEndpoint.html) API를 사용하세요. 엔드포인트를 업데이트할 때 지정할 수 있는 파라미터의 전체 목록은 [https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_UpdateEndpoint.html](https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_UpdateEndpoint.html) API를 참조하세요.