Forrest logo
back to context overview

cdk

List of commands for cdk:

  • cdk:tldr:0dea7 cdk: Deploy a space-separated list of stacks.
    $ cdk deploy ${stack_name}
    try on your machine
    explain this command
  • cdk:tldr:3e02a cdk: Compare the specified stack with the deployed stack or a local CloudFormation template.
    $ cdk diff ${stack_name}
    try on your machine
    explain this command
  • cdk:tldr:8720c cdk: Create a new CDK project in the current directory for a specified language.
    $ cdk init -l ${language_name}
    try on your machine
    explain this command
  • cdk:tldr:a7f5d cdk: Open the CDK API reference in your browser.
    $ cdk docs
    try on your machine
    explain this command
  • cdk:tldr:bee34 cdk: Synthesize and print the CloudFormation template for the specified stack(s).
    $ cdk synth ${stack_name}
    try on your machine
    explain this command
  • cdk:tldr:c8d4b cdk: List the stacks in the app.
    $ cdk ls
    try on your machine
    explain this command
  • cdk:tldr:f2bfc cdk: Destroy a space-separated list of stacks.
    $ cdk destroy ${stack_name}
    try on your machine
    explain this command
back to context overview