# Interacting with AWS

## Accessing AWS Services

* AWS Management Web Console&#x20;
* 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:
>
> ```bash
> 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
> ```

<figure><img src="https://3681896347-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FjfQTFfcSjS8MYnjfKw2c%2Fuploads%2FV9OHrnxuYgb2IeekLIR6%2Fimage.png?alt=media&#x26;token=4baf7f46-cb94-4b9d-a481-7d4fe4985124" alt=""><figcaption></figcaption></figure>

<figure><img src="https://3681896347-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FjfQTFfcSjS8MYnjfKw2c%2Fuploads%2F4VZpvLiGBqsUuliErKm4%2Fimage.png?alt=media&#x26;token=c0a264d3-b13a-4c69-93a1-2298cdb1fc14" alt=""><figcaption></figcaption></figure>

<figure><img src="https://3681896347-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FjfQTFfcSjS8MYnjfKw2c%2Fuploads%2FSZwMs0hNrSRJeeDxbYss%2Fimage.png?alt=media&#x26;token=e6308743-1897-4d27-843f-2892557d99ca" alt=""><figcaption></figcaption></figure>

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