AWS Developer Tools Flashcards
What is Amazon Cloud9?
Cloud9 allows you to write code within an integrated development environment (IDE) from within your web browser.
- Integrated development environment (IDE)
- Write and debug code
- Supports popular programming languages
What is CodeCommit?
CodeCommit is a source control system for private Git repositories.
- Create repositories to store code
- Commit, branch, and merge code
- Collaborate with other software developers
What is CodeBuild?
CodeBuild allows you to build and test your application source code.
- Compiles source code and runs tests
- Enables continuous integration and delivery
- Produces build artifacts ready to be deployed
What is CodeDeploy?
CodeDeploy manages the deployment of code to compute services in the cloud or on-premises.
- Deploys code to EC2, Fargate, Lambda, and on-premises.
- Maintains application uptime
What is CodePipeLine?
CodePipeline automates the software release process. CI/CD
- Quickly deliver new features and updates
- Integrates with CodeBuild to run builds and unit tests
- Integrates with CodeCommit to retrieve source code
- Integrates with CodeDeploy to deploy your changes
What is CodePipeLine real world usecase?
When combined with other developer tools, CodePipeline helps development teams implement DevOps practices that automate testing and the movement of code to production.
What is X-Ray?
X-Ray helps you debug production applications.
- Analyze and debug production applications
- Map application components
- View requests end to end
What is X-Ray real world usecase?
X-Ray can help you map requests made to your RDS database from within your application. You can track information about the SQL queries generated and more.