Show / Hide Table of Contents

Interface CfnFunction.IEventSourceProperty

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

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

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 eventSourceProperty = new EventSourceProperty {
    Properties = new S3EventProperty {
        Variables = new Dictionary<string, string> {
            { "variablesKey", "variables" }
        }
    },
    Type = "type"
};

Synopsis

Properties

Properties

CfnFunction.EventSourceProperty.Properties.

Type

CfnFunction.EventSourceProperty.Type.

Properties

Properties

CfnFunction.EventSourceProperty.Properties.

object Properties { get; }
Property Value

System.Object

Remarks

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

Type

CfnFunction.EventSourceProperty.Type.

string Type { get; }
Property Value

System.String

Remarks

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

Back to top Generated by DocFX