@flowaccount/nx-aws-cdk
Version:
aws-cdk executors and generators for nx workspace
45 lines (44 loc) • 1.09 kB
JSON
{
"version": 2,
"outputCapture": "direct-nodejs",
"$schema": "http://json-schema.org/schema",
"title": "NxAWSCdk Synth",
"description": "Synth an app via the `cdk` cli command.",
"type": "object",
"properties": {
"profile": {
"type": "string",
"description": "Use the indicated AWS profile as the default environment"
},
"stackName": {
"type": "string",
"description": "The name of the cdk stack you want to execute on"
},
"quiet": {
"type": "boolean",
"default": false,
"description": "Do not output CloudFormation Template to stdout"
},
"exclusively": {
"type": "boolean",
"description": "Only synthesize requested stacks, don't include dependencies"
},
"output": {
"type": "string",
"description": "Directory in which to place the synthesizer output."
},
"debug": {
"type": "boolean",
"default": false
},
"verbose": {
"type": "boolean",
"default": false
}
},
"required": [
"profile",
"output",
"stackName"
]
}