{"id":21042894,"url":"https://github.com/erankitcs/awscdkworkshop","last_synced_at":"2026-04-14T17:32:35.418Z","repository":{"id":118644026,"uuid":"431853498","full_name":"erankitcs/AWSCDKWorkshop","owner":"erankitcs","description":"Hands-On Workshop on AWS CDK. ","archived":false,"fork":false,"pushed_at":"2022-01-01T05:04:01.000Z","size":191,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-12-29T19:48:55.000Z","etag":null,"topics":["aws","aws-cdk","cdk","python","serverless"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/erankitcs.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-11-25T13:22:37.000Z","updated_at":"2022-01-01T05:04:04.000Z","dependencies_parsed_at":null,"dependency_job_id":"7ae75c9d-f7a1-4df3-83c4-a4152b7567b6","html_url":"https://github.com/erankitcs/AWSCDKWorkshop","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/erankitcs/AWSCDKWorkshop","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/erankitcs%2FAWSCDKWorkshop","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/erankitcs%2FAWSCDKWorkshop/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/erankitcs%2FAWSCDKWorkshop/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/erankitcs%2FAWSCDKWorkshop/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/erankitcs","download_url":"https://codeload.github.com/erankitcs/AWSCDKWorkshop/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/erankitcs%2FAWSCDKWorkshop/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31808505,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-14T11:13:53.975Z","status":"ssl_error","status_checked_at":"2026-04-14T11:13:53.299Z","response_time":153,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["aws","aws-cdk","cdk","python","serverless"],"created_at":"2024-11-19T14:09:24.687Z","updated_at":"2026-04-14T17:32:35.411Z","avatar_url":"https://github.com/erankitcs.png","language":"Python","readme":"\n# Welcome to your CDK Python project!\n\n## Feature \n1. Simple API built using AWS CDK Python.\n2. Custom Construct feature of AWS CDK.\n3. Uses of Pre-Built Construct Libraries.\n4. Automated Testing and Validation of AWS CDK based Apps.\n5. CDK Pipeline for Deployment of Apps and Validation.\n## Architecture-\n### Basic App with CDK Construct\n![Alt text](images/hello-arch.png?raw=true \"Basic App\")\n### Basic App with Imported CDK Construct\n![Alt text](images/table-viewer.png?raw=true \"Basic App\")\n### CI/CD Pipeline for CDK App\n![Alt text](images/cdk-pipeline.JPG?raw=true \"Basic App\")\n![Alt text](images/cdk-pipeline-1.JPG?raw=true \"Basic App\")\n\nYou should explore the contents of this project. It demonstrates a CDK app with an instance of a stack (`awscdk_workshop_stack`)\nwhich contains an Amazon SQS queue that is subscribed to an Amazon SNS topic.\n\nThe `cdk.json` file tells the CDK Toolkit how to execute your app.\n\nThis project is set up like a standard Python project.  The initialization process also creates\na virtualenv within this project, stored under the .venv directory.  To create the virtualenv\nit assumes that there is a `python3` executable in your path with access to the `venv` package.\nIf for any reason the automatic creation of the virtualenv fails, you can create the virtualenv\nmanually once the init process completes.\n\nTo manually create a virtualenv on MacOS and Linux:\n\n```\n$ python -m venv .venv\n```\n\nAfter the init process completes and the virtualenv is created, you can use the following\nstep to activate your virtualenv.\n\n```\n$ source .venv/bin/activate\n```\n\nIf you are a Windows platform, you would activate the virtualenv like this:\n\n```\n% .venv\\Scripts\\activate.bat\n```\n\nOnce the virtualenv is activated, you can install the required dependencies.\n\n```\n$ pip install -r requirements.txt\n```\n\nAt this point you can now synthesize the CloudFormation template for this code.\n\n```\n$ cdk synth\n```\n\nYou can now begin exploring the source code, contained in the hello directory.\nThere is also a very trivial test included that can be run like this:\n\n```\n$ pip install -r requirements-dev.txt\n$ pytest\n```\n\nTo add additional dependencies, for example other CDK libraries, just add to\nyour requirements.txt file and rerun the `pip install -r requirements.txt`\ncommand.\n\n## Tutorial  \nSee [this useful workshop](https://cdkworkshop.com/30-python.html) on working with the AWS CDK for Python projects.\n\n## Useful commands\n\n * `cdk ls`          list all stacks in the app\n * `cdk synth`       emits the synthesized CloudFormation template\n * `cdk deploy`      deploy this stack to your default AWS account/region\n * `cdk diff`        compare deployed stack with current state\n * `cdk docs`        open CDK documentation\n\n\nEnjoy!\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ferankitcs%2Fawscdkworkshop","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ferankitcs%2Fawscdkworkshop","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ferankitcs%2Fawscdkworkshop/lists"}