Class SuggestStatus
- java.lang.Object
-
- com.amazonaws.services.cloudsearchdomain.model.SuggestStatus
-
- All Implemented Interfaces:
Serializable,Cloneable
public class SuggestStatus extends Object implements Serializable, Cloneable
Contains the resource id (
rid) and the time it took to process the request (timems).- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SuggestStatus()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description SuggestStatusclone()booleanequals(Object obj)StringgetRid()The encrypted resource ID for the request.LonggetTimems()How long it took to process the request, in milliseconds.inthashCode()voidsetRid(String rid)The encrypted resource ID for the request.voidsetTimems(Long timems)How long it took to process the request, in milliseconds.StringtoString()Returns a string representation of this object; useful for testing and debugging.SuggestStatuswithRid(String rid)The encrypted resource ID for the request.SuggestStatuswithTimems(Long timems)How long it took to process the request, in milliseconds.
-
-
-
Method Detail
-
setTimems
public void setTimems(Long timems)
How long it took to process the request, in milliseconds.
- Parameters:
timems- How long it took to process the request, in milliseconds.
-
getTimems
public Long getTimems()
How long it took to process the request, in milliseconds.
- Returns:
- How long it took to process the request, in milliseconds.
-
withTimems
public SuggestStatus withTimems(Long timems)
How long it took to process the request, in milliseconds.
- Parameters:
timems- How long it took to process the request, in milliseconds.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setRid
public void setRid(String rid)
The encrypted resource ID for the request.
- Parameters:
rid- The encrypted resource ID for the request.
-
getRid
public String getRid()
The encrypted resource ID for the request.
- Returns:
- The encrypted resource ID for the request.
-
withRid
public SuggestStatus withRid(String rid)
The encrypted resource ID for the request.
- Parameters:
rid- The encrypted resource ID for 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 SuggestStatus clone()
-
-