Αλληλεπιδράτε με το AWS μέσω διαφόρων διεπαφών — η Management Console (web UI), το CLI (command line), τα 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)
