Interacting with AWS
Accessing AWS Services
AWS Management Web Console
AWS Mobile Application
AWS CLI [Available for Windows/Linux or use CloudShell]
Note: AWS CLI comes preinstalled on AMI Linux. Also,Bundled installations like the one as shown below are difficult to modify default behavior like changing User Agent, so its recommended to passit via Proxy (Shown later)
One can install AWS CLI in Debian based Linux using the following commands:
curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip" unzip awscliv2.zip sudo ./aws/install aws --version aws configure aws sts get-caller-identity



AWS SDK [Some of the supported languages are Python, C++, Java, .NET, Ruby, Node.js, Javascript (Browser), Kotlin, Swift etc.]
Last updated