Amazon.MachineLearning.AmazonMachineLearningClient.CreateRealtimeEndpoint C# (CSharp) Метод

CreateRealtimeEndpoint() публичный Метод

Creates a real-time endpoint for the MLModel. The endpoint contains the URI of the MLModel; that is, the location to send real-time prediction requests for the specified MLModel.
/// An error on the server occurred when trying to process a request. /// /// An error on the client occurred. Typically, the cause is an invalid input value. /// /// A specified resource cannot be located. ///
public CreateRealtimeEndpoint ( string mlModelId ) : CreateRealtimeEndpointResponse
mlModelId string The ID assigned to the MLModel during creation.
Результат Amazon.MachineLearning.Model.CreateRealtimeEndpointResponse
        public CreateRealtimeEndpointResponse CreateRealtimeEndpoint(string mlModelId)
        {
            var request = new CreateRealtimeEndpointRequest();
            request.MLModelId = mlModelId;
            return CreateRealtimeEndpoint(request);
        }

Same methods

AmazonMachineLearningClient::CreateRealtimeEndpoint ( Amazon.MachineLearning.Model.CreateRealtimeEndpointRequest request ) : CreateRealtimeEndpointResponse
AmazonMachineLearningClient