Interface CdkAppDirectoryProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CdkAppDirectoryProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.103.1 (build bef2dea)", date="2024-09-24T10:56:41.734Z") @Stability(Experimental) public interface CdkAppDirectoryProps extends software.amazon.jsii.JsiiSerializable
(experimental) Configuration for creating a CLI from an AWS CDK App directory.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cli.lib.alpha.*;
 CdkAppDirectoryProps cdkAppDirectoryProps = CdkAppDirectoryProps.builder()
         .app("app")
         .output("output")
         .build();
 
  • Method Details

    • getApp

      @Stability(Experimental) @Nullable default String getApp()
      (experimental) Command-line for executing your app or a cloud assembly directory e.g. "node bin/my-app.js" or "cdk.out".

      Default: - read from cdk.json

    • getOutput

      @Stability(Experimental) @Nullable default String getOutput()
      (experimental) Emits the synthesized cloud assembly into a directory.

      Default: cdk.out

    • builder

      @Stability(Experimental) static CdkAppDirectoryProps.Builder builder()
      Returns:
      a CdkAppDirectoryProps.Builder of CdkAppDirectoryProps