Package com.amazonaws.services.iot.model
Class LambdaAction
- java.lang.Object
-
- com.amazonaws.services.iot.model.LambdaAction
-
- All Implemented Interfaces:
Serializable,Cloneable
public class LambdaAction extends Object implements Serializable, Cloneable
Describes an action to invoke a Lambda function.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description LambdaAction()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description LambdaActionclone()booleanequals(Object obj)StringgetFunctionArn()The ARN of the Lambda function.inthashCode()voidsetFunctionArn(String functionArn)The ARN of the Lambda function.StringtoString()Returns a string representation of this object; useful for testing and debugging.LambdaActionwithFunctionArn(String functionArn)The ARN of the Lambda function.
-
-
-
Method Detail
-
setFunctionArn
public void setFunctionArn(String functionArn)
The ARN of the Lambda function.
- Parameters:
functionArn- The ARN of the Lambda function.
-
getFunctionArn
public String getFunctionArn()
The ARN of the Lambda function.
- Returns:
- The ARN of the Lambda function.
-
withFunctionArn
public LambdaAction withFunctionArn(String functionArn)
The ARN of the Lambda function.
- Parameters:
functionArn- The ARN of the Lambda function.- 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 LambdaAction clone()
-
-