public class CreateRealtimeEndpointResult extends Object implements Serializable, Cloneable
Represents the output of an CreateRealtimeEndpoint operation.
The result contains the MLModelId and the endpoint
information for the MLModel .
NOTE: The endpoint information includes the URI of the MLModel; that is, the location to send online prediction requests for the specified MLModel.
| Constructor and Description |
|---|
CreateRealtimeEndpointResult() |
| Modifier and Type | Method and Description |
|---|---|
CreateRealtimeEndpointResult |
clone() |
boolean |
equals(Object obj) |
String |
getMLModelId()
A user-supplied ID that uniquely identifies the
MLModel. |
RealtimeEndpointInfo |
getRealtimeEndpointInfo()
The endpoint information of the
MLModel |
int |
hashCode() |
void |
setMLModelId(String mLModelId)
A user-supplied ID that uniquely identifies the
MLModel. |
void |
setRealtimeEndpointInfo(RealtimeEndpointInfo realtimeEndpointInfo)
The endpoint information of the
MLModel |
String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
CreateRealtimeEndpointResult |
withMLModelId(String mLModelId)
A user-supplied ID that uniquely identifies the
MLModel. |
CreateRealtimeEndpointResult |
withRealtimeEndpointInfo(RealtimeEndpointInfo realtimeEndpointInfo)
The endpoint information of the
MLModel |
public String getMLModelId()
MLModel.
This value should be identical to the value of the
MLModelId in the request.
Constraints:
Length: 1 - 64
Pattern: [a-zA-Z0-9_.-]+
MLModel.
This value should be identical to the value of the
MLModelId in the request.public void setMLModelId(String mLModelId)
MLModel.
This value should be identical to the value of the
MLModelId in the request.
Constraints:
Length: 1 - 64
Pattern: [a-zA-Z0-9_.-]+
mLModelId - A user-supplied ID that uniquely identifies the MLModel.
This value should be identical to the value of the
MLModelId in the request.public CreateRealtimeEndpointResult withMLModelId(String mLModelId)
MLModel.
This value should be identical to the value of the
MLModelId in the request.
Returns a reference to this object so that method calls can be chained together.
Constraints:
Length: 1 - 64
Pattern: [a-zA-Z0-9_.-]+
mLModelId - A user-supplied ID that uniquely identifies the MLModel.
This value should be identical to the value of the
MLModelId in the request.public RealtimeEndpointInfo getRealtimeEndpointInfo()
MLModelMLModelpublic void setRealtimeEndpointInfo(RealtimeEndpointInfo realtimeEndpointInfo)
MLModelrealtimeEndpointInfo - The endpoint information of the MLModelpublic CreateRealtimeEndpointResult withRealtimeEndpointInfo(RealtimeEndpointInfo realtimeEndpointInfo)
MLModel
Returns a reference to this object so that method calls can be chained together.
realtimeEndpointInfo - The endpoint information of the MLModelpublic String toString()
toString in class ObjectObject.toString()public CreateRealtimeEndpointResult clone()
Copyright © 2015. All rights reserved.