public class DeleteRealtimeEndpointResult
extends java.lang.Object
implements java.io.Serializable, java.lang.Cloneable
Represents the output of an DeleteRealtimeEndpoint operation.
The result contains the MLModelId
and the endpoint information
for the MLModel
.
Modifier and Type | Field and Description |
---|---|
private java.lang.String |
mLModelId
A user-supplied ID that uniquely identifies the
MLModel . |
private RealtimeEndpointInfo |
realtimeEndpointInfo
The endpoint information of the
MLModel |
Constructor and Description |
---|
DeleteRealtimeEndpointResult() |
Modifier and Type | Method and Description |
---|---|
DeleteRealtimeEndpointResult |
clone() |
boolean |
equals(java.lang.Object obj) |
java.lang.String |
getMLModelId()
A user-supplied ID that uniquely identifies the
MLModel . |
RealtimeEndpointInfo |
getRealtimeEndpointInfo()
The endpoint information of the
MLModel |
int |
hashCode() |
void |
setMLModelId(java.lang.String mLModelId)
A user-supplied ID that uniquely identifies the
MLModel . |
void |
setRealtimeEndpointInfo(RealtimeEndpointInfo realtimeEndpointInfo)
The endpoint information of the
MLModel |
java.lang.String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
DeleteRealtimeEndpointResult |
withMLModelId(java.lang.String mLModelId)
A user-supplied ID that uniquely identifies the
MLModel . |
DeleteRealtimeEndpointResult |
withRealtimeEndpointInfo(RealtimeEndpointInfo realtimeEndpointInfo)
The endpoint information of the
MLModel |
private java.lang.String mLModelId
A user-supplied ID that uniquely identifies the MLModel
.
This value should be identical to the value of the MLModelId
in the request.
private RealtimeEndpointInfo realtimeEndpointInfo
The endpoint information of the MLModel
public void setMLModelId(java.lang.String mLModelId)
A user-supplied ID that uniquely identifies the MLModel
.
This value should be identical to the value of the MLModelId
in the request.
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 java.lang.String getMLModelId()
A user-supplied ID that uniquely identifies the MLModel
.
This value should be identical to the value of the MLModelId
in the request.
MLModel
. This value should be identical to the value
of the MLModelId
in the request.public DeleteRealtimeEndpointResult withMLModelId(java.lang.String mLModelId)
A user-supplied ID that uniquely identifies the MLModel
.
This value should be identical to the value of the MLModelId
in the request.
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 void setRealtimeEndpointInfo(RealtimeEndpointInfo realtimeEndpointInfo)
The endpoint information of the MLModel
realtimeEndpointInfo
- The endpoint information of the MLModel
public RealtimeEndpointInfo getRealtimeEndpointInfo()
The endpoint information of the MLModel
MLModel
public DeleteRealtimeEndpointResult withRealtimeEndpointInfo(RealtimeEndpointInfo realtimeEndpointInfo)
The endpoint information of the MLModel
realtimeEndpointInfo
- The endpoint information of the MLModel
public java.lang.String toString()
toString
in class java.lang.Object
Object.toString()
public boolean equals(java.lang.Object obj)
equals
in class java.lang.Object
public int hashCode()
hashCode
in class java.lang.Object
public DeleteRealtimeEndpointResult clone()
clone
in class java.lang.Object