Interface LambdaIntegrationOptions

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

@Generated(value="jsii-pacmak/1.104.0 (build e79254c)", date="2024-12-06T14:43:13.397Z") @Stability(Stable) public interface LambdaIntegrationOptions extends software.amazon.jsii.JsiiSerializable, IntegrationOptions
Example:

 Function backend;
 LambdaRestApi api = LambdaRestApi.Builder.create(this, "myapi")
         .handler(backend)
         .integrationOptions(LambdaIntegrationOptions.builder()
                 .allowTestInvoke(false)
                 .timeout(Duration.seconds(1))
                 .build())
         .build();