Class: Aws::MachineLearning::Types::DeleteRealtimeEndpointOutput
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::MachineLearning::Types::DeleteRealtimeEndpointOutput
 
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-machinelearning/types.rb
Overview
Represents the output of an ‘DeleteRealtimeEndpoint` operation.
The result contains the ‘MLModelId` and the endpoint information for the `MLModel`.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #ml_model_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A user-supplied ID that uniquely identifies the ‘MLModel`. 
- 
  
    
      #realtime_endpoint_info  ⇒ Types::RealtimeEndpointInfo 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The endpoint information of the ‘MLModel`. 
Instance Attribute Details
#ml_model_id ⇒ String
A user-supplied ID that uniquely identifies the ‘MLModel`. This value should be identical to the value of the `MLModelId` in the request.
| 961 962 963 964 965 966 | # File 'lib/aws-sdk-machinelearning/types.rb', line 961 class DeleteRealtimeEndpointOutput < Struct.new( :ml_model_id, :realtime_endpoint_info) SENSITIVE = [] include Aws::Structure end | 
#realtime_endpoint_info ⇒ Types::RealtimeEndpointInfo
The endpoint information of the ‘MLModel`
| 961 962 963 964 965 966 | # File 'lib/aws-sdk-machinelearning/types.rb', line 961 class DeleteRealtimeEndpointOutput < Struct.new( :ml_model_id, :realtime_endpoint_info) SENSITIVE = [] include Aws::Structure end |