ETExamTower
AWS-DEVOPS-ENGINEER-PROFESSIONALUpdated 8d ago · Aug 28, 2026

AWS DevOps Engineer - Professional (DOP-C01)

207 questions across 1 topics, with suggested answers, explanations where available, and imported community discussion. The first 20 questions are free to preview.

Topics

#TopicQuestionsFree
1SDLC Automation11

Preview

1 of 1 accessible
Question 1 · SDLC Automation Open

A company uses AWS CodeCommit for source control and wants to automate its continuous integration and continuous delivery pipeline on AWS for its development environment. The company has three requirements: 1. A legal and security review must be performed for every code change to ensure that sensitive information is not exposed through the source code. 2. Each change must undergo unit testing. 3. Each change must undergo a suite of functional tests to verify functionality. Additionally, the company has the following automation requirements: 1. Code changes must automatically initiate the CI/CD pipeline. 2. Any pipeline failure must notify [email protected]. 3. Approval must be required to stage the assets to Amazon S3 after testing has completed. What should a DevOps Engineer do to meet all these requirements while following CI/CD best practices?

Answer: C AWS CodePipeline supports source, test, approval, and deploy actions arranged in ordered stages. A CodeCommit source branch can automatically start the pipeline; separate review and test stages enforce the required security, unit, and functional gates. A manual approval action pauses execution before an Amazon S3 deploy action. CloudWatch Events, now Amazon EventBridge, can detect CodePipeline state changes, and Amazon SNS can send the resulting failure notification to an email subscriber. **Learn more:** [Create a pipeline, stages, and actions - AWS CodePipeline](https://docs.aws.amazon.com/codepipeline/latest/userguide/pipelines-create.html) · [Add a manual approval action to a pipeline in CodePipeline](https://docs.aws.amazon.com/codepipeline/latest/userguide/approvals-action-add.html)