Class FunctionUrl

java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
software.amazon.awscdk.Resource
software.amazon.awscdk.services.lambda.FunctionUrl
All Implemented Interfaces:
IResource, IFunctionUrl, software.amazon.jsii.JsiiSerializable, software.constructs.IConstruct, software.constructs.IDependable

@Generated(value="jsii-pacmak/1.102.0 (build e354887)", date="2024-08-29T22:54:21.095Z") @Stability(Stable) public class FunctionUrl extends Resource implements IFunctionUrl
Defines a Lambda function url.

Example:

 // Can be a Function or an Alias
 Function fn;
 FunctionUrl fnUrl = fn.addFunctionUrl(FunctionUrlOptions.builder()
         .authType(FunctionUrlAuthType.NONE)
         .build());
 CfnOutput.Builder.create(this, "TheUrl")
         .value(fnUrl.getUrl())
         .build();
 
  • Constructor Details

    • FunctionUrl

      protected FunctionUrl(software.amazon.jsii.JsiiObjectRef objRef)
    • FunctionUrl

      protected FunctionUrl(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
    • FunctionUrl

      @Stability(Stable) public FunctionUrl(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull FunctionUrlProps props)
      Parameters:
      scope - This parameter is required.
      id - This parameter is required.
      props - This parameter is required.
  • Method Details

    • grantInvokeUrl

      @Stability(Stable) @NotNull public Grant grantInvokeUrl(@NotNull IGrantable grantee)
      Grant the given identity permissions to invoke this Lambda Function URL.

      Specified by:
      grantInvokeUrl in interface IFunctionUrl
      Parameters:
      grantee - This parameter is required.
    • getFunctionArn

      @Stability(Stable) @NotNull public String getFunctionArn()
      The ARN of the function this URL refers to.
      Specified by:
      getFunctionArn in interface IFunctionUrl
    • getUrl

      @Stability(Stable) @NotNull public String getUrl()
      The url of the Lambda function.
      Specified by:
      getUrl in interface IFunctionUrl