AWS CDK Stack Builder Tool

0

Hi AWS, I was playing with the AWS CDK Stack Builder Tool but I am completely naive to it. The repo is written in TypeScript but I was trying to use Python. Having said that only deployment steps are mentioned both locally and using AWS Cloud9.

I was creating a dummy project PrivateEC2Instance using the available blueprint gallery following using an online version (Browser version) as attached in the screenshot AWS CDK Stack Builder Blueprint Gallery

and it has three tabs i.e.

  1. Designer
  2. Code
  3. Diagram

The Diagram for the following project AWS CDK Stack Builder Diagram

The Designer tab for the project is AWS CDK Stack Builder Designer

There are a few things which I want to have as a starting point i.e.

  1. Toggle Interactivity (To bring movement in widgets and edges).
  2. Stack Properties and how to customize them.
  3. How to extend the infrastructure.

I am really confused at the moment, so can you please help me.

1 Answer
0

The AWS CDK Stack Builder Tool is a browser-based tool for Infrastructure as Code (IaC) projects. It doesn’t explicitly mention a feature to toggle interactivity for movement in widgets and edges. You can customize CDK stack synthesis using the synthesizer property of your Stack instance. To extend the infrastructure, you can add additional CDK constructs to your stack or modify the DefaultStackSynthesizer properties. If these don’t provide the customization you require, you can write your synthesizer as a class that implements IStackSynthesizer.

profile picture
EXPERT
answered a year ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions