Interface ProxyResourceOptions

All Superinterfaces:
software.amazon.jsii.JsiiSerializable, ResourceOptions
All Known Subinterfaces:
ProxyResourceProps
All Known Implementing Classes:
ProxyResourceOptions.Jsii$Proxy, ProxyResourceProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.97.0 (build 729de35)", date="2024-04-24T21:00:24.913Z") @Stability(Stable) public interface ProxyResourceOptions extends software.amazon.jsii.JsiiSerializable, ResourceOptions
Example:

 Resource resource;
 Function handler;
 ProxyResource proxy = resource.addProxy(ProxyResourceOptions.builder()
         .defaultIntegration(new LambdaIntegration(handler))
         // "false" will require explicitly adding methods on the `proxy` resource
         .anyMethod(true)
         .build());