@aws-cdk_cli-lib-alpha.CdkAppDirectoryProps
interface CdkAppDirectoryProps
Language | Type name |
---|---|
![]() | Amazon.CDK.Cli.Lib.Alpha.CdkAppDirectoryProps |
![]() | github.com/aws/aws-cdk-go/awscdkclilibalpha/v2#CdkAppDirectoryProps |
![]() | software.amazon.awscdk.cli.lib.alpha.CdkAppDirectoryProps |
![]() | aws_cdk.cli_lib_alpha.CdkAppDirectoryProps |
![]() | @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
Name | Type | Description |
---|---|---|
app? | string | Command-line for executing your app or a cloud assembly directory e.g. "node bin/my-app.js" or "cdk.out". |
output? | string | Emits 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.