기계 번역으로 제공되는 번역입니다. 제공된 번역과 원본 영어의 내용이 상충하는 경우에는 영어 버전이 우선합니다.
UpdateEndpoint
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로 설정됩니다. 엔드포인트의 상태를 확인하려면 DescribeEndpoint
API를 사용하세요. 엔드포인트를 업데이트할 때 지정할 수 있는 파라미터의 전체 목록은 UpdateEndpoint
API를 참조하세요.