Class InvokeAsyncResult
- java.lang.Object
-
- com.amazonaws.services.lambda.model.InvokeAsyncResult
-
- All Implemented Interfaces:
Serializable,Cloneable
@Deprecated public class InvokeAsyncResult extends Object implements Serializable, Cloneable
Deprecated.Upon success, it returns empty response. Otherwise, throws an exception.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description InvokeAsyncResult()Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description InvokeAsyncResultclone()Deprecated.booleanequals(Object obj)Deprecated.IntegergetStatus()Deprecated.It will be 202 upon success.inthashCode()Deprecated.voidsetStatus(Integer status)Deprecated.It will be 202 upon success.StringtoString()Deprecated.Returns a string representation of this object; useful for testing and debugging.InvokeAsyncResultwithStatus(Integer status)Deprecated.It will be 202 upon success.
-
-
-
Method Detail
-
setStatus
public void setStatus(Integer status)
Deprecated.It will be 202 upon success.
- Parameters:
status- It will be 202 upon success.
-
getStatus
public Integer getStatus()
Deprecated.It will be 202 upon success.
- Returns:
- It will be 202 upon success.
-
withStatus
public InvokeAsyncResult withStatus(Integer status)
Deprecated.It will be 202 upon success.
- Parameters:
status- It will be 202 upon success.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
toString
public String toString()
Deprecated.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 InvokeAsyncResult clone()
Deprecated.
-
-