Class SearchStatus
- java.lang.Object
-
- com.amazonaws.services.cloudsearchdomain.model.SearchStatus
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class SearchStatus 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 SearchStatus()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description SearchStatus
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.SearchStatus
withRid(String rid)
The encrypted resource ID for the request.SearchStatus
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 SearchStatus 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 SearchStatus 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 SearchStatus clone()
-
-