Show / Hide Table of Contents

Class EventInvokeConfigReference

A reference to a EventInvokeConfig resource.

Inheritance
object
EventInvokeConfigReference
Implements
IEventInvokeConfigReference
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.Lambda
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class EventInvokeConfigReference : IEventInvokeConfigReference
Syntax (vb)
Public Class EventInvokeConfigReference Implements IEventInvokeConfigReference
Remarks

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.Lambda;

            var eventInvokeConfigReference = new EventInvokeConfigReference {
                FunctionName = "functionName",
                Qualifier = "qualifier"
            };

Synopsis

Constructors

EventInvokeConfigReference()

A reference to a EventInvokeConfig resource.

Properties

FunctionName

The FunctionName of the EventInvokeConfig resource.

Qualifier

The Qualifier of the EventInvokeConfig resource.

Constructors

EventInvokeConfigReference()

A reference to a EventInvokeConfig resource.

public EventInvokeConfigReference()
Remarks

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.Lambda;

            var eventInvokeConfigReference = new EventInvokeConfigReference {
                FunctionName = "functionName",
                Qualifier = "qualifier"
            };

Properties

FunctionName

The FunctionName of the EventInvokeConfig resource.

public string FunctionName { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

Qualifier

The Qualifier of the EventInvokeConfig resource.

public string Qualifier { get; set; }
Property Value

string

Remarks

ExampleMetadata: fixture=_generated

Implements

IEventInvokeConfigReference
Back to top Generated by DocFX