Class EventInvokeConfigReference
A reference to a EventInvokeConfig resource.
Implements
Inherited Members
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
Remarks
ExampleMetadata: fixture=_generated
Qualifier
The Qualifier of the EventInvokeConfig resource.
public string Qualifier { get; set; }
Property Value
Remarks
ExampleMetadata: fixture=_generated