Show / Hide Table of Contents

Class CfnFunction.KinesisEventProperty

Inheritance
object
CfnFunction.KinesisEventProperty
Implements
CfnFunction.IKinesisEventProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.SAM
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnFunction.KinesisEventProperty : CfnFunction.IKinesisEventProperty
Syntax (vb)
Public Class CfnFunction.KinesisEventProperty Implements CfnFunction.IKinesisEventProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-serverless-function-kinesisevent.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.SAM;

             var kinesisEventProperty = new KinesisEventProperty {
                 StartingPosition = "startingPosition",
                 Stream = "stream",

                 // the properties below are optional
                 BatchSize = 123,
                 Enabled = false,
                 FunctionResponseTypes = new [] { "functionResponseTypes" }
             };

Synopsis

Constructors

KinesisEventProperty()

Properties

BatchSize
Enabled
FunctionResponseTypes
StartingPosition
Stream

Constructors

KinesisEventProperty()

public KinesisEventProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-serverless-function-kinesisevent.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.SAM;

             var kinesisEventProperty = new KinesisEventProperty {
                 StartingPosition = "startingPosition",
                 Stream = "stream",

                 // the properties below are optional
                 BatchSize = 123,
                 Enabled = false,
                 FunctionResponseTypes = new [] { "functionResponseTypes" }
             };

Properties

BatchSize

public double? BatchSize { get; set; }
Property Value

double?

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-serverless-function-kinesisevent.html#cfn-serverless-function-kinesisevent-batchsize

Enabled

public object? Enabled { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-serverless-function-kinesisevent.html#cfn-serverless-function-kinesisevent-enabled

FunctionResponseTypes

public string[]? FunctionResponseTypes { get; set; }
Property Value

string[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-serverless-function-kinesisevent.html#cfn-serverless-function-kinesisevent-functionresponsetypes

StartingPosition

public string StartingPosition { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-serverless-function-kinesisevent.html#cfn-serverless-function-kinesisevent-startingposition

Stream

public string Stream { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-serverless-function-kinesisevent.html#cfn-serverless-function-kinesisevent-stream

Implements

CfnFunction.IKinesisEventProperty
Back to top Generated by DocFX