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 LambdaAction
clone()
boolean
equals(Object obj)
String
getFunctionArn()
The ARN of the Lambda function.int
hashCode()
void
setFunctionArn(String functionArn)
The ARN of the Lambda function.String
toString()
Returns a string representation of this object; useful for testing and debugging.LambdaAction
withFunctionArn(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:
toString
in classObject
- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public LambdaAction clone()
-
-