You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+29-1Lines changed: 29 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,7 +21,6 @@ $ cdk destroy
21
21
| Example | Description |
22
22
|---------|-------------|
23
23
|[application-load-balancer](https://github.com/aws-samples/aws-cdk-examples/tree/master/typescript/application-load-balancer/)| Using an AutoScalingGroup with an Application Load Balancer |
24
-
|[chat-app](https://github.com/aws-samples/aws-cdk-examples/tree/master/typescript/chat-app/)| A serverless chat application using Cognito |
25
24
|[classic-load-balancer](https://github.com/aws-samples/aws-cdk-examples/tree/master/typescript/classic-load-balancer/)| Using an AutoScalingGroup with a Classic Load Balancer |
26
25
|[custom-resource](https://github.com/aws-samples/aws-cdk-examples/tree/master/typescript/custom-resource/)| Shows adding a Custom Resource to your CDK app |
27
26
|[elasticbeanstalk](https://github.com/aws-samples/aws-cdk-examples/tree/master/typescript/elasticbeanstalk/)| Elastic Beanstalk example using L1 with a Blue/Green pipeline (community contributed) |
@@ -57,6 +56,35 @@ $ cdk destroy
57
56
|---------|-------------|
58
57
|[hello-world](https://github.com/aws-samples/aws-cdk-examples/tree/master/java/hello-world/)| A demo application that uses the CDK in Java |
59
58
59
+
## Python examples
60
+
61
+
To run a Python example, say my-widget-service:
62
+
63
+
```
64
+
$ npm install -g aws-cdk
65
+
$ cd python/my-widget-service
66
+
$ pip install -r requirements.txt # Best to do this in a virtualenv
67
+
$ cdk deploy # Deploys the CloudFormation template
68
+
69
+
# Afterwards
70
+
$ cdk destroy
71
+
```
72
+
73
+
| Example | Description |
74
+
|---------|-------------|
75
+
|[application-load-balancer](https://github.com/aws-samples/aws-cdk-examples/tree/master/python/application-load-balancer/)| Using an AutoScalingGroup with an Application Load Balancer |
76
+
|[classic-load-balancer](https://github.com/aws-samples/aws-cdk-examples/tree/master/python/classic-load-balancer/)| Using an AutoScalingGroup with a Classic Load Balancer |
77
+
|[custom-resource](https://github.com/aws-samples/aws-cdk-examples/tree/master/python/custom-resource/)| Shows adding a Custom Resource to your CDK app |
78
+
|[ecs-cluster](https://github.com/aws-samples/aws-cdk-examples/tree/master/python/ecs/cluster/)| Provision an ECS Cluster with custom Autoscaling Group configuration |
79
+
|[ecs-load-balanced-service](https://github.com/aws-samples/aws-cdk-examples/tree/master/python/ecs/ecs-load-balanced-service/)| Starting a container fronted by a load balancer on ECS |
80
+
|[ecs-service-with-task-placement](https://github.com/aws-samples/aws-cdk-examples/tree/master/python/ecs/ecs-service-with-task-placement/)| Starting a container ECS with task placement specifications |
81
+
|[ecs-service-with-advanced-alb-config](https://github.com/aws-samples/aws-cdk-examples/tree/master/python/ecs/ecs-service-with-advanced-alb-config/)| Starting a container fronted by a load balancer on ECS with added load balancer configuration |
82
+
|[ecs-service-with-task-networking](https://github.com/aws-samples/aws-cdk-examples/tree/master/python/ecs/ecs-service-with-task-networking/)| Starting an ECS service with task networking, allowing ingress traffic to the task but blocking for the instance |
83
+
|[fargate-load-balanced-service](https://github.com/aws-samples/aws-cdk-examples/tree/master/python/ecs/fargate-load-balanced-service/)| Starting a container fronted by a load balancer on Fargate |
84
+
|[fargate-service-with-auto-scaling](https://github.com/aws-samples/aws-cdk-examples/tree/master/python/ecs/fargate-service-with-auto-scaling/)| Starting an ECS service of FARGATE launch type that auto scales based on average CPU Utilization |
85
+
|[lambda-cron](https://github.com/aws-samples/aws-cdk-examples/tree/master/python/lambda-cron/)| Running a Lambda on a schedule |
86
+
|[stepfunctions-job-poller](https://github.com/aws-samples/aws-cdk-examples/tree/master/python/stepfunctions-job-poller/)| A simple StepFunctions workflow |
87
+
60
88
## JavaScript examples
61
89
62
90
Select the following link to see how to install and run the example.
0 commit comments