Class: Aws::MachineLearning::Types::RealtimeEndpointInfo

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

Overview

Describes the real-time endpoint information for an MLModel.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#created_atTime

The time that the request to create the real-time endpoint for the MLModel was received. The time is expressed in epoch time.

Returns:

  • (Time)


3081
3082
3083
3084
3085
3086
3087
3088
# File 'gems/aws-sdk-machinelearning/lib/aws-sdk-machinelearning/types.rb', line 3081

class RealtimeEndpointInfo < Struct.new(
  :peak_requests_per_second,
  :created_at,
  :endpoint_url,
  :endpoint_status)
  SENSITIVE = []
  include Aws::Structure
end

#endpoint_statusString

The current status of the real-time endpoint for the MLModel. This element can have one of the following values:

  • NONE - Endpoint does not exist or was previously deleted.

  • READY - Endpoint is ready to be used for real-time predictions.

  • UPDATING - Updating/creating the endpoint.

Returns:

  • (String)


3081
3082
3083
3084
3085
3086
3087
3088
# File 'gems/aws-sdk-machinelearning/lib/aws-sdk-machinelearning/types.rb', line 3081

class RealtimeEndpointInfo < Struct.new(
  :peak_requests_per_second,
  :created_at,
  :endpoint_url,
  :endpoint_status)
  SENSITIVE = []
  include Aws::Structure
end

#endpoint_urlString

The URI that specifies where to send real-time prediction requests for the MLModel.

Note: The application must wait until the real-time endpoint is ready before using this URI.

Returns:

  • (String)


3081
3082
3083
3084
3085
3086
3087
3088
# File 'gems/aws-sdk-machinelearning/lib/aws-sdk-machinelearning/types.rb', line 3081

class RealtimeEndpointInfo < Struct.new(
  :peak_requests_per_second,
  :created_at,
  :endpoint_url,
  :endpoint_status)
  SENSITIVE = []
  include Aws::Structure
end

#peak_requests_per_secondInteger

The maximum processing rate for the real-time endpoint for MLModel, measured in incoming requests per second.

Returns:

  • (Integer)


3081
3082
3083
3084
3085
3086
3087
3088
# File 'gems/aws-sdk-machinelearning/lib/aws-sdk-machinelearning/types.rb', line 3081

class RealtimeEndpointInfo < Struct.new(
  :peak_requests_per_second,
  :created_at,
  :endpoint_url,
  :endpoint_status)
  SENSITIVE = []
  include Aws::Structure
end