Show / Hide Table of Contents

Class CfnApplicationPropsMixin.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
object
CfnApplicationPropsMixin.InputProcessingConfigurationProperty
Implements
CfnApplicationPropsMixin.IInputProcessingConfigurationProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.Mixins.Preview.AWS.KinesisAnalyticsV2.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnApplicationPropsMixin.InputProcessingConfigurationProperty : CfnApplicationPropsMixin.IInputProcessingConfigurationProperty
Syntax (vb)
Public Class CfnApplicationPropsMixin.InputProcessingConfigurationProperty Implements CfnApplicationPropsMixin.IInputProcessingConfigurationProperty
Remarks

Currently, the only input processor available is Amazon Lambda .

See: 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.Mixins.Preview.AWS.KinesisAnalyticsV2.Mixins;

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

Synopsis

Constructors

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.

Properties

InputLambdaProcessor

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

Constructors

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.

public InputProcessingConfigurationProperty()
Remarks

Currently, the only input processor available is Amazon Lambda .

See: 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.Mixins.Preview.AWS.KinesisAnalyticsV2.Mixins;

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

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

object

Remarks

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

Type union: either IResolvable or CfnApplicationPropsMixin.IInputLambdaProcessorProperty

Implements

CfnApplicationPropsMixin.IInputProcessingConfigurationProperty
Back to top Generated by DocFX