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 SuggestStatus
clone()
boolean
equals(Object obj)
String
getRid()
The encrypted resource ID for the request.Long
getTimems()
How long it took to process the request, in milliseconds.int
hashCode()
void
setRid(String rid)
The encrypted resource ID for the request.void
setTimems(Long timems)
How long it took to process the request, in milliseconds.String
toString()
Returns a string representation of this object; useful for testing and debugging.SuggestStatus
withRid(String rid)
The encrypted resource ID for the request.SuggestStatus
withTimems(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:
toString
in classObject
- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public SuggestStatus clone()
-
-