Interface CfnDetectorModelPropsMixin.ILambdaProperty
Calls a Lambda function, passing in information about the detector model instance and the event that triggered the action.
Namespace: Amazon.CDK.Mixins.Preview.AWS.IoTEvents.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public interface CfnDetectorModelPropsMixin.ILambdaProperty
Syntax (vb)
Public Interface CfnDetectorModelPropsMixin.ILambdaProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.IoTEvents.Mixins;
var lambdaProperty = new LambdaProperty {
FunctionArn = "functionArn",
Payload = new PayloadProperty {
ContentExpression = "contentExpression",
Type = "type"
}
};
Synopsis
Properties
| FunctionArn | The ARN of the Lambda function that is executed. |
| Payload | You can configure the action payload when you send a message to a Lambda function. |
Properties
FunctionArn
The ARN of the Lambda function that is executed.
string? FunctionArn { get; }
Property Value
Remarks
Payload
You can configure the action payload when you send a message to a Lambda function.
object? Payload { get; }