Interface IFunctionReference
A reference to a Function resource.
Namespace: Amazon.CDK.Interfaces.Lambda
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IFunctionReference
Syntax (vb)
Public Interface IFunctionReference
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.Interfaces.Lambda;
var functionReference = new FunctionReference {
FunctionArn = "functionArn",
FunctionName = "functionName"
};
Synopsis
Properties
| FunctionArn | The ARN of the Function resource. |
| FunctionName | The FunctionName of the Function resource. |
Properties
FunctionArn
The ARN of the Function resource.
string FunctionArn { get; }
Property Value
Remarks
ExampleMetadata: fixture=_generated
FunctionName
The FunctionName of the Function resource.
string FunctionName { get; }
Property Value
Remarks
ExampleMetadata: fixture=_generated