మీరు AWS తో అనేక ఇంటర్ఫేసుల ద్వారా సంభాషణ చేస్తారు — Management Console (వెబ్ UI), CLI (కమాండ్ లైన్), SDKs (కోడ్ లో), మరియు Infrastructure as Code సాధనాలు. వీటిని అర్థం చేసుకోవడం మరియు ఎప్పుడు ఉపయోగించాలో తెలుసుకోవడం ఆచరణాత్మక పునాదులు జ్ఞానం.
AWS తో సంభాషణ చేసే ప్రధాన మార్గాలు
1. MANAGEMENT CONSOLE — a web UI:
→ point-and-click; great for LEARNING, exploring, one-off tasks, visualizing
→ not repeatable/scriptable; error-prone for repeated/complex setups
2. AWS CLI — command-line interface:
→ scriptable, automatable; good for automation and repeatable tasks
3. SDKs — libraries for your code (Python boto3, JS, Java, Go, etc.):
→ interact with AWS programmatically FROM your application
4. INFRASTRUCTURE AS CODE (IaC) — CloudFormation, Terraform, CDK:
→ define infrastructure declaratively in code (the BEST for production — see below)
