Show / Hide Table of Contents

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotevents-detectormodel-lambda.html

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotevents-detectormodel-lambda.html#cfn-iotevents-detectormodel-lambda-functionarn

Payload

You can configure the action payload when you send a message to a Lambda function.

object? Payload { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotevents-detectormodel-lambda.html#cfn-iotevents-detectormodel-lambda-payload

Type union: either IResolvable or CfnDetectorModelPropsMixin.IPayloadProperty

Back to top Generated by DocFX