Class DeleteMLModelResult
- java.lang.Object
-
- com.amazonaws.services.machinelearning.model.DeleteMLModelResult
-
- All Implemented Interfaces:
Serializable,Cloneable
public class DeleteMLModelResult extends Object implements Serializable, Cloneable
Represents the output of a DeleteMLModel operation.
You can use the GetMLModel operation and check the value of the
Statusparameter to see whether anMLModelis marked asDELETED.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DeleteMLModelResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DeleteMLModelResultclone()booleanequals(Object obj)StringgetMLModelId()A user-supplied ID that uniquely identifies theMLModel.inthashCode()voidsetMLModelId(String mLModelId)A user-supplied ID that uniquely identifies theMLModel.StringtoString()Returns a string representation of this object; useful for testing and debugging.DeleteMLModelResultwithMLModelId(String mLModelId)A user-supplied ID that uniquely identifies theMLModel.
-
-
-
Method Detail
-
setMLModelId
public void setMLModelId(String mLModelId)
A user-supplied ID that uniquely identifies the
MLModel. This value should be identical to the value of theMLModelIDin the request.- Parameters:
mLModelId- A user-supplied ID that uniquely identifies theMLModel. This value should be identical to the value of theMLModelIDin the request.
-
getMLModelId
public String getMLModelId()
A user-supplied ID that uniquely identifies the
MLModel. This value should be identical to the value of theMLModelIDin the request.- Returns:
- A user-supplied ID that uniquely identifies the
MLModel. This value should be identical to the value of theMLModelIDin the request.
-
withMLModelId
public DeleteMLModelResult withMLModelId(String mLModelId)
A user-supplied ID that uniquely identifies the
MLModel. This value should be identical to the value of theMLModelIDin the request.- Parameters:
mLModelId- A user-supplied ID that uniquely identifies theMLModel. This value should be identical to the value of theMLModelIDin the request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
toString
public String toString()
Returns a string representation of this object; useful for testing and debugging.- Overrides:
toStringin classObject- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public DeleteMLModelResult clone()
-
-