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.140.0 (build 79fd58c)", date="2026-09-25T13:53:42.927Z") @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());