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.130.0 (build 048a5ee)", date="2026-05-19T19:44:34.798Z") @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());