AWS CodePipeline Basics

What is AWS CodePipeline? AWS CodePipeline is a continuous integration and continuous delivery (CI/CD) service that automates the build, test, and deploy phases of your release process. Key Concepts Pipeline A workflow that describes how code changes go through release process. Consists of multiple stages executed sequentially. Stage A logical unit in pipeline (e.g., Source, Build, Test, Deploy). Each stage contains one or more actions. Action A task performed on artifacts (e.g., download from GitHub, compile code, deploy to EC2). Actions within same stage run in parallel. ...

December 4, 2025 · 5 min · Ren Nishino