The AWS Cloud Development Kit (CDK) comes with numerous CLI commands.

<th class="has-text-align-left" data-align="left">
  <strong>Function</strong>
</th>
<td class="has-text-align-left" data-align="left">
  Lists the stacks in the application
</td>
<td class="has-text-align-left" data-align="left">
  Synthesizes and prints the AWS CloudFormation template for the specified stack or stacks&nbsp;
</td>
<td class="has-text-align-left" data-align="left">
  Deploys the AWS CDK Toolkit stack, required to deploy stacks containing assets
</td>
<td class="has-text-align-left" data-align="left">
  Deploys the specified stacks
</td>
<td class="has-text-align-left" data-align="left">
  Destroys the specified stacks
</td>
<td class="has-text-align-left" data-align="left">
  Compares the specified stack with the deployed stack or a local AWS CloudFormation template
</td>
<td class="has-text-align-left" data-align="left">
  Displays metadata about the specified stack
</td>
<td class="has-text-align-left" data-align="left">
  Creates a new AWS CDK project in the current directory from a specified template<br />
</td>
<td class="has-text-align-left" data-align="left">
  Manages cached context values
</td>
<td class="has-text-align-left" data-align="left">
  Opens the AWS CDK API reference in your browser
</td>
<td class="has-text-align-left" data-align="left">
  Checks your AWS CDK project for potential problems
</td>
Command
cdk list (ls)
cdk synthesize (synth)
cdk bootstrap
cdk deploy
cdk destroy
cdk diff
cdk metadata
cdk init
cdk context
cdk docs (doc)
cdk doctor

Learn more about AWS CDK here, or read the Official Guides here.