Class: Aws::MachineLearning::Types::CreateRealtimeEndpointOutput

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-machinelearning/types.rb

Overview

Represents the output of an ‘CreateRealtimeEndpoint` operation.

The result contains the ‘MLModelId` and the endpoint information for the `MLModel`.

<note markdown=“1”> The endpoint information includes the URI of the ‘MLModel`; that is, the location to send online prediction requests for the specified `MLModel`.

</note>

Instance Attribute Summary collapse

Instance Attribute Details

#ml_model_idString

A user-supplied ID that uniquely identifies the ‘MLModel`. This value should be identical to the value of the `MLModelId` in the request.

Returns:

  • (String)


792
793
794
795
796
# File 'lib/aws-sdk-machinelearning/types.rb', line 792

class CreateRealtimeEndpointOutput < Struct.new(
  :ml_model_id,
  :realtime_endpoint_info)
  include Aws::Structure
end

#realtime_endpoint_infoTypes::RealtimeEndpointInfo

The endpoint information of the ‘MLModel`



792
793
794
795
796
# File 'lib/aws-sdk-machinelearning/types.rb', line 792

class CreateRealtimeEndpointOutput < Struct.new(
  :ml_model_id,
  :realtime_endpoint_info)
  include Aws::Structure
end