AWS Management Console
The Management Console is a GUI operated manually from a browser.
It cannot be called programmatically from within application code, so this is incorrect.
A developer wants to call and operate AWS services programmatically from within the code of a custom Python application. Which option is the MOST suitable?
A question asking which option operates AWS programmatically from code.
AWS Management Console
The Management Console is a GUI operated manually from a browser.
It cannot be called programmatically from within application code, so this is incorrect.
AWS SDK
This is correct. The AWS SDK is a set of libraries that call AWS services from each programming language (such as boto3 for Python). You embed it in your application code to operate and automate resources programmatically.
AWS Trusted Advisor
Trusted Advisor is a tool that inspects cost, security, performance, and more, and provides recommendations.
It is not a way to operate AWS from application code, so this is incorrect.
AWS Health Dashboard
The Health Dashboard is a screen for checking the operational status and events of AWS services.
It is not a way to operate AWS from code, so this is incorrect.
"From code" and "call programmatically" mean the SDK (boto3 for Python, and so on). "Commands in a terminal" means the CLI, and "a browser" means the Console. Distinguish the role of each.