public class CreateMLModelResult
extends java.lang.Object
implements java.io.Serializable, java.lang.Cloneable
Represents the output of a CreateMLModel operation, and is an acknowledgement that Amazon ML received the request.
The CreateMLModel operation is asynchronous. You can poll for status
updates by using the GetMLModel operation and checking the
Status
parameter.
Modifier and Type | Field and Description |
---|---|
private java.lang.String |
mLModelId
A user-supplied ID that uniquely identifies the
MLModel . |
Constructor and Description |
---|
CreateMLModelResult() |
Modifier and Type | Method and Description |
---|---|
CreateMLModelResult |
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.
|
CreateMLModelResult |
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 CreateMLModelResult 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 CreateMLModelResult clone()
clone
in class java.lang.Object