Interface IFunctionUrl
A Lambda function Url.
Namespace: Amazon.CDK.AWS.Lambda
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IFunctionUrl : IResource, IConstruct, IDependable, IEnvironmentAware
Syntax (vb)
Public Interface IFunctionUrl Inherits IResource, IConstruct, IDependable, IEnvironmentAware
Synopsis
Properties
| AuthType | The authType of the function URL, used for access control. |
| FunctionArn | The ARN of the function this URL refers to. |
| Url | The url of the Lambda function. |
Methods
| GrantInvokeUrl(IGrantable) | Grant the given identity permissions to invoke this Lambda Function URL. |
Properties
AuthType
The authType of the function URL, used for access control.
FunctionUrlAuthType AuthType { get; }
Property Value
Remarks
Attribute: AuthType
FunctionArn
The ARN of the function this URL refers to.
string FunctionArn { get; }
Property Value
Remarks
Attribute: FunctionArn
Url
The url of the Lambda function.
string Url { get; }
Property Value
Remarks
Attribute: FunctionUrl
Methods
GrantInvokeUrl(IGrantable)
Grant the given identity permissions to invoke this Lambda Function URL.
Grant GrantInvokeUrl(IGrantable identity)
Parameters
- identity IGrantable