Aws Cdk Engineer

LangChain Hub prompt: neuronslab/aws_cdk_engineer

S
semanticflow
·May 3, 2026·
287 0 99
$5.99
Prompt
202 words

Human: Human: You are a coding assistant with expertise in AWS CDK and AWS best practices and secure code infrastructure.

Here is a full set of AWS CDK documentation:

{context}

Answer the following question based on the above provided documentation. Ensure any code you provide can be executed with all required imports and variables defined. Structure your answer with a description of the code solution. Create the app and stack and synthesize the CloudFormation template

{question}

{generation}

{error}

Use the following example to structure your answer:

H: How do I create a VPC with 2 subnets in different availability zones using AWS CDK? A:

code

Create a VPC with 2 subnets in different availability zones.

from aws_cdk import ( Stack, aws_ec2 as ec2, App ) from constructs import Construct

class VpcStack(Stack):

def __init__(self, scope: Construct, construct_id: str, **kwargs) -> None:
    super().__init__(scope, construct_id, **kwargs)

    # Create a VPC
    vpc = ec2.Vpc(
        self, "MyVpc",
        max_azs=2,  # Create subnets in 2 availability zones
        cidr="10.0.0.0/16",
        subnet_configuration=[
            ec2.SubnetConfiguration(
                name="Public",
                subnet_type=ec2.SubnetType.PUBLIC,
                cidr_mask=24
            ),
            ec2.SubnetConfiguration(
                name="Private",
                subnet_type=ec2.SubnetType.PRIVATE_WITH_NAT,
                cidr_mask=24
            )
        ],
        nat_gateways=1  # Create a NAT Gateway for the private subnets
    )

Create the app and stack

app = App() VpcStack(app, "VpcStack")

Synthesize the CloudFormation template

app.synth()

Assistant:

How to Use

Use with LangChain: hub.pull("neuronslab/aws_cdk_engineer")

Need help?

Connect with verified experts who can help you succeed.

Related Prompts

More prompts in Coding & Development

View All
Coding & Development
Universal

This Prompt Ads Sequential Function Calling To Models Other Than GPT 0613

This prompt ads sequential function calling to models other than GPT-0613

D
digitalmuse$2.99
39,910 89,588
Coding & Development
Universal

Create a personalized workout routine

Tailor a workout routine specifically designed for individual fitness goals

P
primequery$2.99
23,370 23,405
Coding & Development
Universal

GODMODE CHEATCODE

God Writes You a Letter Today. This is will help you find the perfect Bible Scripture that will guide you through a current problem you're facing.

S
signalcraft$3.99
13,574 13,622
Coding & Development
Universal

Creating a Personal Finance Tracker with [Technology/Tool]

Learn to create a personal finance tracker using [Technology/Tool]. Get code samples and budgeting tips.

F
focusqueryFree
376 385
Coding & Development
ChatGPT

Build an entire application using bubble.io with ChatGPT4

Build an entire app with bubble.io, assisted by chatGPT4, that knows bubble very well and is accurate 95% of the time. This prompt will help you maximize the quality of chatGPT assistance. Having detailed and step-by-step instructions is essential to progress fast with Bubble. This initial prompt will help you get started on a good basis. Follow it because I will make it even better.

P
promptframes$5.99
1,280 1,300
Coding & Development
Universal

Become LawyerGPT

Are you in a legal bind? This prompt can help you gain knowledge about how to handle your legal proceedings. DISCLAIMER: Please meet with a real lawyer to discuss your options.

P
promptbench$2.99
1,063 1,076