public class DeleteMLModelResult
extends java.lang.Object
implements java.io.Serializable, java.lang.Cloneable
Represents the output of a DeleteMLModel operation.
You can use the GetMLModel operation and check the value of the
Status
parameter to see whether an MLModel
is
marked as DELETED
.
Modifier and Type | Field and Description |
---|---|
private java.lang.String |
mLModelId
A user-supplied ID that uniquely identifies the
MLModel . |
Constructor and Description |
---|
DeleteMLModelResult() |
Modifier and Type | Method and Description |
---|---|
DeleteMLModelResult |
clone() |
boolean |
equals(java.lang.Object obj) |
java.lang.String |
getMLModelId()
A user-supplied ID that uniquely identifies the
MLModel . |
int |
hashCode() |
void |
setMLModelId(java.lang.String mLModelId)
A user-supplied ID that uniquely identifies the
MLModel . |
java.lang.String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
DeleteMLModelResult |
withMLModelId(java.lang.String mLModelId)
A user-supplied ID that uniquely identifies 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.
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 DeleteMLModelResult 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 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 DeleteMLModelResult clone()
clone
in class java.lang.Object