Show / Hide Table of Contents

Interface CfnFunction.ISQSEventProperty

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

Link: https://github.com/awslabs/serverless-application-model/blob/master/versions/2016-10-31.md#sqs

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 sQSEventProperty = new SQSEventProperty {
    Queue = "queue",

    // the properties below are optional
    BatchSize = 123,
    Enabled = false
};

Synopsis

Properties

BatchSize

CfnFunction.SQSEventProperty.BatchSize.

Enabled

CfnFunction.SQSEventProperty.Enabled.

Queue

CfnFunction.SQSEventProperty.Queue.

Properties

BatchSize

CfnFunction.SQSEventProperty.BatchSize.

virtual Nullable<double> BatchSize { get; }
Property Value

System.Nullable<System.Double>

Remarks

Link: https://github.com/awslabs/serverless-application-model/blob/master/versions/2016-10-31.md#sqs

Enabled

CfnFunction.SQSEventProperty.Enabled.

virtual object Enabled { get; }
Property Value

System.Object

Remarks

Link: https://github.com/awslabs/serverless-application-model/blob/master/versions/2016-10-31.md#sqs

Queue

CfnFunction.SQSEventProperty.Queue.

string Queue { get; }
Property Value

System.String

Remarks

Link: https://github.com/awslabs/serverless-application-model/blob/master/versions/2016-10-31.md#sqs

Back to top Generated by DocFX