

翻訳は機械翻訳により提供されています。提供された翻訳内容と英語版の間で齟齬、不一致または矛盾がある場合、英語版が優先します。

# 非同期推論エンドポイントを作成する方法
<a name="async-inference-create-endpoint"></a>

SageMaker AI ホスティングサービスを使用してエンドポイントを作成する場合と同じ方法で非同期エンドポイントを作成します。
+ `CreateModel` を使用して SageMaker AI でモデルを作成する。
+ `CreateEndpointConfig` を使用してエンドポイント設定を作成する。
+ `CreateEndpoint` を使用して HTTPS エンドポイントを作成する。

エンドポイントを作成するには、まず、[https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_CreateModel.html](https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_CreateModel.html) を使用してモデルアーティファクトと Docker レジストリパス (イメージ) をポイントする、モデルを作成します。次に、[https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_CreateEndpointConfig.html](https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_CreateEndpointConfig.html) を使用して設定を作成します。この設定では、`CreateModel` API を使用して作成された 1 つ以上のデプロイするモデルと、SageMaker AI でプロビジョンするリソースを指定します。リクエストで指定したエンドポイント設定を使用して [https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_CreateEndpoint.html](https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_CreateEndpoint.html) でエンドポイントを作成します。非同期エンドポイントは、[https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_UpdateEndpoint.html](https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_UpdateEndpoint.html) API を使用して更新できます。`InvokeEndpointAsync` を使って、エンドポイント ホストされているモデルとの間で推論リクエストを送受信します。エンドポイントは [https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_DeleteEndpoint.html](https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_DeleteEndpoint.html) API を使用して削除できます。

使用可能な SageMaker イメージの完全なリストについては、「[使用可能な Deep Learning Containers イメージ](https://github.com/aws/deep-learning-containers/blob/master/available_images.md)」を参照してください。Docker イメージの作成方法の詳細については、「[カスタム推論コードを持つコンテナ](your-algorithms-inference-main.md)」を参照してください。

**Topics**
+ [モデルを作成する](async-inference-create-endpoint-create-model.md)
+ [エンドポイント設定を作成する](async-inference-create-endpoint-create-endpoint-config.md)
+ [エンドポイントの作成](async-inference-create-endpoint-create-endpoint.md)