Show / Hide Table of Contents

Class CfnApplication.InputProcessingConfigurationProperty

For an SQL-based Amazon Kinesis Data Analytics application, describes a processor that is used to preprocess the records in the stream before being processed by your application code.

Inheritance
System.Object
CfnApplication.InputProcessingConfigurationProperty
Implements
CfnApplication.IInputProcessingConfigurationProperty
Namespace: Amazon.CDK.AWS.KinesisAnalyticsV2
Assembly: Amazon.CDK.AWS.KinesisAnalyticsV2.dll
Syntax (csharp)
public class InputProcessingConfigurationProperty : Object, CfnApplication.IInputProcessingConfigurationProperty
Syntax (vb)
Public Class InputProcessingConfigurationProperty
    Inherits Object
    Implements CfnApplication.IInputProcessingConfigurationProperty
Remarks

Currently, the only input processor available is Amazon Lambda .

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-inputprocessingconfiguration.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.KinesisAnalyticsV2;

var inputProcessingConfigurationProperty = new InputProcessingConfigurationProperty {
    InputLambdaProcessor = new InputLambdaProcessorProperty {
        ResourceArn = "resourceArn"
    }
};

Synopsis

Constructors

InputProcessingConfigurationProperty()

Properties

InputLambdaProcessor

The InputLambdaProcessor that is used to preprocess the records in the stream before being processed by your application code.

Constructors

InputProcessingConfigurationProperty()

public InputProcessingConfigurationProperty()

Properties

InputLambdaProcessor

The InputLambdaProcessor that is used to preprocess the records in the stream before being processed by your application code.

public object InputLambdaProcessor { get; set; }
Property Value

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisanalyticsv2-application-inputprocessingconfiguration.html#cfn-kinesisanalyticsv2-application-inputprocessingconfiguration-inputlambdaprocessor

Implements

CfnApplication.IInputProcessingConfigurationProperty
Back to top Generated by DocFX