All Content tagged with AWS Cloud Development Kit (CDK)
AWS Cloud Development Kit (CDK) accelerates cloud development using common programming languages to model your applications.
Content language: English
Select up to 5 tags to filter
Sort by most recent
391 results
I have a Stack A with an IoT Rule and its Arn.
In another Stack B, I want to get this IoT Rule and add a action to it. I don't want to add the action in Stack A, because the rule references to a...
Hey all, I have this code and I am not seeing what I am doing wrong.
I am creating an RDS in CDK :
```
const secret = this.createDatabaseInstanceSecret(appName, props.deployEnv,...
Are people generally successful using [Alexa::ASK::Skill](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/alexa-resource-ask-skill.html)? I'm trying to use it from CDK, both with and...
am trying to create a stack which contains API Gateway and few lambdas based on a config.json file
When I Give CDK Deploy for the first time the stack and the resources are created successfully, but...
I have a CDK script that uses a secret as part of the script. Works pretty well:
```typescript
const PARAM_PREFIX = '/autofrog-ha-skill';
const alexaVendorId =...
Unfortunately, the aws-cdk-lib.aws_stepfunctions_tasks module doesn't have any tasks for EMR Serverless. I want to create one that starts an EMR Serverless job (sync). The ASL task state is described...
Hi AWS, I am writing infrastructure code using **AWS CDK (Python)** and I have written code to deploy multiple stacks, for e.g. one stack is deploying SQS queue and the other stack is deploying...
Hi AWS, this is the follow up question for an issue I raised in the past https://repost.aws/questions/QU1laSwxybRRiFbj1CyMuxRg/cdk-bootstraping. I ran `cdk bootstrap...
We have an auto scaling group whose instances are registered to an application target group. An application load balancer has an https listener redirecting traffic to the application target group...
We're migrating from Serverless Framework (SF) to CDK and I'm wondering how to best manage per deployment stage (e.g. prod, dev) configuration using CDK. IN SF we had a YAML block like this:
```yaml
...
We initially built our backend using IaC, using the [Serverless Framework](https://www.serverless.com/). Now we want to migrate to CDK.
The CloudFormation stack created by the Serverless Framework...
In Java applications it's very common to use Maven profiles in order to customize builds. This is done by using the `mvn -P<profile-name ...` command. However, with the CDK, the Maven command to be...