AWS Certified Developer – Associate (DVA-C02) — Question 550

A developer is creating an application on Amazon Elastic Container Service (Amazon ECS). The developer needs to configure the application parameters. The developer must configure limits for the application's maximum number of simultaneous connections and maximum number of transactions per second.

The maximum number of connections and transactions can change in the future. The developer needs a solution that can automatically deploy these changes to the application, as needed, without causing downtime.

Which solution will meet these requirements?

Answer options

Correct answer: C

Explanation

AWS AppConfig is designed specifically for managing and deploying application configuration changes dynamically at runtime without requiring a full container redeployment or causing downtime. Installing the AWS AppConfig agent on ECS allows the application to pull configuration updates seamlessly using safe deployment strategies like Canary10Percent20Minutes. Other options rely on full application redeployments (via CodeDeploy or AWS CDK), which are unnecessarily complex and slow for simple runtime configuration updates.