@aws-cdk_cli-lib-alpha.CdkAppDirectoryProps

interface CdkAppDirectoryProps ๐Ÿ”น

LanguageType name
.NETAmazon.CDK.Cli.Lib.Alpha.CdkAppDirectoryProps
Gogithub.com/aws/aws-cdk-go/awscdkclilibalpha/v2#CdkAppDirectoryProps
Javasoftware.amazon.awscdk.cli.lib.alpha.CdkAppDirectoryProps
Pythonaws_cdk.cli_lib_alpha.CdkAppDirectoryProps
TypeScript (source)@aws-cdk/cli-lib-alpha ยป CdkAppDirectoryProps

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 * as cli_lib_alpha from '@aws-cdk/cli-lib-alpha';
const cdkAppDirectoryProps: cli_lib_alpha.CdkAppDirectoryProps = {
  app: 'app',
  output: 'output',
};

Properties

NameTypeDescription
app?๐Ÿ”นstringCommand-line for executing your app or a cloud assembly directory e.g. "node bin/my-app.js" or "cdk.out".
output?๐Ÿ”นstringEmits the synthesized cloud assembly into a directory.

app?๐Ÿ”น

Type: string (optional, default: read from cdk.json)

Command-line for executing your app or a cloud assembly directory e.g. "node bin/my-app.js" or "cdk.out".


output?๐Ÿ”น

Type: string (optional, default: cdk.out)

Emits the synthesized cloud assembly into a directory.