Show / Hide Table of Contents

Interface CfnPipeline.ILambdaProperty

An activity that runs a Lambda function to modify the message.

Namespace: Amazon.CDK.AWS.IoTAnalytics
Assembly: Amazon.CDK.AWS.IoTAnalytics.dll
Syntax (csharp)
public interface ILambdaProperty
Syntax (vb)
Public Interface ILambdaProperty
Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-pipeline-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.AWS.IoTAnalytics;

LambdaProperty lambdaProperty = new LambdaProperty {
    BatchSize = 123,
    LambdaName = "lambdaName",
    Name = "name",

    // the properties below are optional
    Next = "next"
};

Synopsis

Properties

BatchSize

The number of messages passed to the Lambda function for processing.

LambdaName

The name of the Lambda function that is run on the message.

Name

The name of the 'lambda' activity.

Next

The next activity in the pipeline.

Properties

BatchSize

The number of messages passed to the Lambda function for processing.

double BatchSize { get; }
Property Value

System.Double

Remarks

The AWS Lambda function must be able to process all of these messages within five minutes, which is the maximum timeout duration for Lambda functions.

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-pipeline-lambda.html#cfn-iotanalytics-pipeline-lambda-batchsize

LambdaName

The name of the Lambda function that is run on the message.

string LambdaName { get; }
Property Value

System.String

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-pipeline-lambda.html#cfn-iotanalytics-pipeline-lambda-lambdaname

Name

The name of the 'lambda' activity.

string Name { get; }
Property Value

System.String

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-pipeline-lambda.html#cfn-iotanalytics-pipeline-lambda-name

Next

The next activity in the pipeline.

virtual string Next { get; }
Property Value

System.String

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotanalytics-pipeline-lambda.html#cfn-iotanalytics-pipeline-lambda-next

Back to top Generated by DocFX