表示モード
画像位置
文字位置
理解度の自動記録
Q1AWS Certified Cloudops Engineer Associate
Q1. A pharmaceutical company uses an internal AI assistant based on Amazon Bedrock with agents and knowledge bases embedded, so that researchers can quickly access medical research protocols.
The company needs to produce an audit report that includes user IDs, Bedrock agent usage, knowledge base access activity, and the parameters used during interactions.
Which solution meets the requirements?
Show answer
Correct answer: A. Use AWS CloudTrail to record the API events of the generative AI workload. Store the events in CloudTrail Lake and generate the report with SQL-like queries.
AWS CloudTrail is the reliable service for recording API activity and audit trails across an entire AWS account.For Amazon Bedrock, it records all user-initiated API calls, including interactions with agents and knowledge bases as well as model parameters.
With CloudTrail Lake, you can store and query the data without exporting it, and generate audit and compliance reports using SQL-like queries.
Audit requirements such as user ID, API usage, timestamps, and agent ID are best satisfied with CloudTrail and CloudTrail Lake.
CloudWatch is intended for operational metrics, while OpenSearch and Flink introduce unnecessary complexity and cost.
AWS CloudTrail Lake – AWS Documentation
Q2AWS Certified Cloudops Engineer Associate
Q2. A company uses AWS Organizations to centrally manage multiple accounts.
In the production account, a SysOps administrator must be able to back up daily the data of all Amazon EC2 instances and Amazon Elastic File System (Amazon EFS) file systems that are currently running as well as any created in the future.
The backups must be retained for 30 days.
Which solution meets this requirement with the least effort?
Show answer
Correct answer: B. Create a backup plan in AWS Backup. Assign resources by tag. Verify that all existing EC2 and EFS resources are correctly tagged. Apply a service control policy (SCP) that denies the creation of instances and file systems unless the required tag is present, to the OU that contains the production account. Use a lifecycle policy to expire backups after 30 days, and schedule the plan to run daily.
AWS Backup natively supports both EC2 and EFS.By contrast, Amazon DLM does not support backing up EFS, so options C and D are eliminated.
Assigning resources by tag instead of individually listing resource IDs removes the need to edit the plan every time a new instance or file system is created.
If you enforce tagging at creation time with an SCP, future resources are automatically included in the backup scope, meeting the requirement with the least effort.
The plan can run daily and expire backups after 30 days.
AWS Backup Assigning Resources – AWS Documentation
Q3AWS Certified Cloudops Engineer Associate
Q3. A CloudOps engineer is designing a solution for an Amazon RDS for PostgreSQL DB instance.
The database credentials must be stored securely and rotated automatically every month.
The application that connects to the DB instance generates a write-heavy workload, and the number of client connections can fluctuate sharply within short periods.
Which solution should the CloudOps engineer choose to meet this requirement?
Show answer
Correct answer: C. Configure AWS Secrets Manager to automatically rotate the credentials of the DB instance. Handle the surge in database connections with RDS Proxy.
AWS Secrets Manager is designed to store and automatically rotate database credentials, meeting the monthly rotation requirement with no code changes.KMS is for managing encryption keys and cannot rotate DB credentials, so A and B are inappropriate.
For surging client connections, RDS Proxy is optimal because it pools connections for efficiency and protects the DB in write-heavy workloads.
Read replicas are effective for distributing read load, but they cannot handle surges in write connections or reduce connection overhead.
Rotating Secrets Manager Secrets – AWS Documentation
Q4AWS Certified Cloudops Engineer Associate
Q4. A company operates thousands of Amazon EC2 instances based on the Amazon Linux 2 Amazon Machine Image (AMI).
A SysOps administrator must implement a mechanism that records the commands executed and their output for every user who uses an interactive session on any of the EC2 instances.
The recordings must go to highly durable storage.
In addition, it must provide automatic notifications and alarms based on the log content.
Which solution meets this requirement with maximum operational efficiency?
Show answer
Correct answer: C. Have users use AWS Systems Manager Session Manager when they access EC2 instances via the command line. Configure Session Manager to stream session logs to Amazon CloudWatch Logs. Configure metric filters and metric alarms in CloudWatch Logs for the relevant security detections.
AWS Systems Manager Session Manager provides secure, auditable interactive access to EC2 instances at scale, without managing bastion hosts or distributing SSH keys.It can record session activity, including commands and output, to durable destinations such as CloudWatch Logs or S3, directly meeting the requirement.
Turning log patterns into metrics with CloudWatch Logs metric filters and connecting them to alarms and SNS notifications is the standard CloudOps pattern.
Configurations based on a bastion, Run Command, or Athena are less operationally efficient.
AWS Systems Manager Session Manager – AWS Documentation
Q5AWS Certified Cloudops Engineer Associate
Q5. A CloudOps engineer must build a caching layer for a read-heavy application that uses an Amazon RDS for PostgreSQL database.
This application is deployed across three AWS Regions.
Read and write processing occurs in the primary Region.
In the two secondary Regions, read-only processing is performed via RDS for PostgreSQL cross-Region read replicas.
The cache in each Region must be aligned with identical data to provide a consistent user experience across Regions.
Which solution meets the caching layer requirements?
Show answer
Correct answer: A. Configure a Global Datastore for Amazon ElastiCache (Redis OSS). Place a read/write cluster in the primary Region. Place a read-only cluster in each secondary Region.
Amazon ElastiCache for Redis OSS Global Datastore provides fully managed cross-Region replication between one primary cluster and multiple secondary read-only clusters.This replicates cache data across Regions, so writes are handled in the primary while each Region delivers a consistent read experience.
Memcached does not have Global Datastore or cross-Region replication features, so B and D are not feasible.
Option C, RDS query cache replication, is not a mechanism that exists.
ElastiCache Global Datastore – AWS Documentation
Q6AWS Certified Cloudops Engineer Associate
Q6. A CloudOps engineer operates an Amazon ECS service that runs a transaction processing application.
The engineer must deploy a new feature to the ECS service.
No downtime may occur during the deployment.
In addition, if a bug that degrades performance is found, it must be possible to roll back immediately in a single step.
Which solution meets the requirements?
Show answer
Correct answer: B. Use AWS CodeDeploy to perform a blue/green deployment.
For Amazon ECS where zero downtime and fast rollback are required, a blue/green deployment with AWS CodeDeploy is the correct strategy.It creates and validates a new task set while keeping the current production task set running, then safely shifts traffic.
Even if a problem occurs with the new version, you can roll back immediately in a single step simply by shifting traffic back to the original task set.
Rolling updates do not offer equivalent immediate rollback, and canary or linear approaches are gradual transitions that do not directly meet the immediate-rollback requirement.
Manual scaling is operationally fragile.
Amazon ECS Blue/Green Deployments – AWS Documentation
Q7AWS Certified Cloudops Engineer Associate
Q7. A CloudOps engineer must build an event-driven foundation that responds to custom, application-specific events.
The events are sent to an AWS Lambda function for processing.
The engineer must record the events so that they can be replayed later based on event type or the time they occurred.
Which solution meets the requirements?
Show answer
Correct answer: A. Create a custom event bus in Amazon EventBridge and create an archive. Create a rule that sends events to Lambda.
Amazon EventBridge supports custom event buses for application-specific events.An EventBridge archive retains events and can replay them later based on a time range or event pattern, directly meeting the replay requirement.
The combination of a custom event bus, an archive, and a rule is the correct configuration that provides both isolation/governance and replay.
The rule routes events to Lambda without custom code.
Options that use the default bus or a pipe do not fit the custom use case or archive behavior, and CloudWatch Logs has no native replay capability.
EventBridge Archive and Replay – AWS Documentation
Q8AWS Certified Cloudops Engineer Associate
Q8. A logistics company wants to run a containerized application on Amazon ECS behind an Application Load Balancer.
The company wants to adopt an approach that gradually increases the proportion of traffic shifted while validating the new application version.
They want traffic to the new version to start at 10% and increase by 10% every 3 minutes until it is fully shifted.
Which deployment strategy meets the requirements?
Show answer
Correct answer: D. Linear deployment strategy.
The described traffic pattern is a linear deployment, which shifts a fixed percentage of traffic at fixed time intervals until the new version eventually receives 100% of the traffic.AWS CodeDeploy has a predefined configuration named “CodeDeployDefault.ECSLinear10PercentEvery3Minutes” that shifts 10% every 3 minutes, matching the requirement exactly.
Canary sends a small amount first, then shifts the remainder all at once after a wait, so it is not an evenly repeated incremental increase.
Rolling replaces tasks in batches.
Blue/green is a broader model, and the specific strategy requested is linear.
CodeDeploy Deployment Configurations – AWS Documentation
Q9AWS Certified Cloudops Engineer Associate
Q9. A media company runs a public news and video portal on AWS.
The portal uses a provisioned-capacity Amazon DynamoDB table to manage the index of video files stored in an Amazon S3 bucket.
During a recent event, millions of visitors accessed the portal seeking news.
This surge in access caused read requests on the DynamoDB table to be throttled, making it impossible to play videos on the portal.
The company’s operations team temporarily raised the provisioned capacity manually to cope with the demand.
The company wants to deliver an alert to the operations team before the table is throttled in the future.
The company has created an Amazon Simple Notification Service (Amazon SNS) topic and subscribed the operations team’s email address to that topic.
What should the company do next to meet the requirement?
Show answer
Correct answer: A. Create an Amazon CloudWatch alarm that uses the ConsumedReadCapacityUnits metric. Set the alarm threshold to a value close to the provisioned capacity of the DynamoDB table. Configure the alarm to publish a notification to the SNS topic.
The requirement is to raise an alert before throttling occurs.In provisioned-capacity mode DynamoDB, throttling occurs when demand approaches or exceeds the provisioned throughput.
CloudWatch directly provides table metrics such as ConsumedReadCapacityUnits and ProvisionedReadCapacityUnits.
By creating an alarm with a consumed read capacity threshold set close to the provisioned value, you can warn early when the limit is being approached, before actual throttling occurs.
Detecting THROTTLING_EXCEPTION is a reaction after the fact and does not meet the early-warning requirement.
DynamoDB CloudWatch Metrics – AWS Documentation
Q10AWS Certified Cloudops Engineer Associate
Q10. A development team wants to use Amazon EventBridge to match events in which the state of an Amazon EC2 machine is anything other than “terminated”.
In the example event, detail-type is “EC2 Instance State-change Notification”, and the state within detail contains a value such as “running”. (See image 1)
Which event pattern should the development team use to find the relevant events?

Show answer
Correct answer: D. {“detail”: {“state”: [{“anything-but”: {“equals-ignore-case”: “terminated”}}]}}
EventBridge supports negative matching using “anything-but”.Combining anything-but with equals-ignore-case lets you match EC2 state values other than “terminated” in a case-insensitive way.
The syntaxes “not equals-ignore-case” and “! equals-ignore-case” in options A and B do not exist in EventBridge.
Option C matches “terminated”, which is the opposite of the requirement.
Therefore, option D using anything-but is the correct event pattern.
EventBridge Content-Based Filtering – AWS Documentation
