Class: Aws::MachineLearning::Types::RealtimeEndpointInfo
- Inherits:
-
Struct
- Object
- Struct
- Aws::MachineLearning::Types::RealtimeEndpointInfo
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-machinelearning/types.rb
Overview
Describes the real-time endpoint information for an ‘MLModel`.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#created_at ⇒ Time
The time that the request to create the real-time endpoint for the ‘MLModel` was received.
-
#endpoint_status ⇒ String
The current status of the real-time endpoint for the ‘MLModel`.
-
#endpoint_url ⇒ String
The URI that specifies where to send real-time prediction requests for the ‘MLModel`.
-
#peak_requests_per_second ⇒ Integer
The maximum processing rate for the real-time endpoint for ‘MLModel`, measured in incoming requests per second.
Instance Attribute Details
#created_at ⇒ Time
The time that the request to create the real-time endpoint for the ‘MLModel` was received. The time is expressed in epoch time.
3081 3082 3083 3084 3085 3086 3087 3088 |
# File '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_status ⇒ String
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.
3081 3082 3083 3084 3085 3086 3087 3088 |
# File '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_url ⇒ String
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.
3081 3082 3083 3084 3085 3086 3087 3088 |
# File '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_second ⇒ Integer
The maximum processing rate for the real-time endpoint for ‘MLModel`, measured in incoming requests per second.
3081 3082 3083 3084 3085 3086 3087 3088 |
# File '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 |