

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

# 엔드포인트 생성
<a name="serverless-endpoints-create-endpoint"></a>

서버리스 엔드포인트를 생성하려면 [Amazon SageMaker AI 콘솔](https://console.aws.amazon.com/sagemaker/home), [CreateEndpoint](https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_CreateEndpoint.html) API 또는 AWS CLI를 사용할 수 있습니다. API 및 콘솔 접근 방식은 다음 섹션에 요약되어 있습니다. 엔드포인트를 생성한 후 엔드포인트가 사용 가능해지기까지 몇 분 정도 걸릴 수 있습니다.

## 엔드포인트 생성하기 (API 사용)
<a name="serverless-endpoints-create-endpoint-api"></a>

다음 예제에서는 [Python용AWS SDK (Boto3)](https://boto3.amazonaws.com/v1/documentation/api/latest/index.html)를 사용하여 [CreateEndpoint](https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_CreateEndpoint.html) API를 호출합니다. 다음 값을 지정하세요:
+ `EndpointName`에 해당 리전의 계정 내에서 고유한 엔드포인트 이름을 입력합니다.
+ `EndpointConfigName`의 경우 이전 섹션에서 생성한 엔드포인트 구성의 이름을 사용합니다.

```
response = client.create_endpoint(
    EndpointName="{{<your-endpoint-name>}}",
    EndpointConfigName="{{<your-endpoint-config>}}"
)
```

## 엔드포인트 생성하기 (콘솔 사용)
<a name="serverless-endpoints-create-endpoint-console"></a>

1. [Amazon SageMaker AI 콘솔](https://console.aws.amazon.com/sagemaker/home)에 로그인합니다.

1. 탐색 패널에서 **Inference**(추론)을 선택합니다.

1. 다음으로 **Endpoints**(엔드포인트)를 선택합니다.

1. **Create endpoint**(엔드포인트 생성)을 선택합니다.

1. **Endpoint name**(엔드포인트 이름)에 해당 리전의 계정 내에서 고유한 이름을 입력합니다.

1. **Attach endpoint configuration**(엔드포인트 구성 연결)에서 **Use an existing endpoint configuration**(기존 엔드포인트 구성 사용)을 선택합니다.

1. **Endpoint configuration**(엔드포인트 구성)의 경우 이전 섹션에서 생성한 엔드포인트 구성의 이름을 선택한 다음 **Select endpoint configuration**(엔드포인트 구성 선택)을 선택합니다.

1. (선택 사항) 엔드포인트를 위한 메타데이터를 생성하려면 **Tags**(태그)에 키-값 페어를 입력합니다.

1. **엔드포인트 생성**을 선택합니다.  
![콘솔의 엔드포인트 생성 및 구성 페이지 스크린샷.](http://docs.aws.amazon.com/ko_kr/sagemaker/latest/dg/images/serverless-endpoints-create.png)