Interface FunctionUrlOptions

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Subinterfaces:
FunctionUrlProps
All Known Implementing Classes:
FunctionUrlOptions.Jsii$Proxy, FunctionUrlProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:40.760Z") @Stability(Stable) public interface FunctionUrlOptions extends software.amazon.jsii.JsiiSerializable
Options to add a url to a Lambda function.

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();