Interface CustomResourcesOptions

All Superinterfaces:
AppStagingSynthesizerOptions, software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CustomResourcesOptions.Jsii$Proxy

@Generated(value="jsii-pacmak/1.98.0 (build 00b106d)", date="2024-05-08T21:35:15.521Z") @Stability(Experimental) public interface CustomResourcesOptions extends software.amazon.jsii.JsiiSerializable, AppStagingSynthesizerOptions
(experimental) Properties for customResources static method.

Example:

 App resourceApp = new App();
 CustomStagingStack resources = new CustomStagingStack(resourceApp, "CustomStagingStack", new CustomStagingStackProps());
 App app = App.Builder.create()
         .defaultStackSynthesizer(AppStagingSynthesizer.customResources(CustomResourcesOptions.builder()
                 .resources(resources)
                 .build()))
         .build();