Class CfnTopicRule.LambdaActionProperty
Describes an action to invoke a Lambda function.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.IoT
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnTopicRule.LambdaActionProperty : CfnTopicRule.ILambdaActionProperty
Syntax (vb)
Public Class CfnTopicRule.LambdaActionProperty Implements CfnTopicRule.ILambdaActionProperty
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.AWS.IoT;
var lambdaActionProperty = new LambdaActionProperty {
FunctionArn = "functionArn"
};
Synopsis
Constructors
LambdaActionProperty() | Describes an action to invoke a Lambda function. |
Properties
FunctionArn | The ARN of the Lambda function. |
Constructors
LambdaActionProperty()
Describes an action to invoke a Lambda function.
public LambdaActionProperty()
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.AWS.IoT;
var lambdaActionProperty = new LambdaActionProperty {
FunctionArn = "functionArn"
};
Properties
FunctionArn
The ARN of the Lambda function.
public string? FunctionArn { get; set; }