Interface LambdaIntegrationOptions

All Superinterfaces:
IntegrationOptions, software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
LambdaIntegrationOptions.Jsii$Proxy

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:44.996Z") @Stability(Stable) public interface LambdaIntegrationOptions extends software.amazon.jsii.JsiiSerializable, IntegrationOptions
Example:

 Function getBookHandler;
 LambdaIntegration getBookIntegration;
 LambdaIntegration getBookIntegration = LambdaIntegration.Builder.create(getBookHandler)
         .contentHandling(ContentHandling.CONVERT_TO_TEXT) // convert to base64
         .credentialsPassthrough(true)
         .build();