The AWS Management Console
The Console is the web-based control panel where you can create and manage every AWS service by clicking.
The AWS Management Console is the browser interface at console.aws.amazon.com. It is the friendliest way to explore AWS when you are starting out.
Key parts of the Console
- Services menu — search and open any of the 200+ services.
- Region selector — top-right corner; most resources are Region-specific, so check you are in the right one.
- Account menu — billing, security credentials and sign-out.
- CloudShell — a browser terminal with the AWS CLI pre-installed.
Console vs CLI
The Console is great for learning and one-off tasks. For anything you repeat, the AWS CLI or infrastructure-as-code is faster, scriptable and less error-prone.
Example
# CloudShell in the Console already has the CLI configured.
# Confirm which identity and Region you are using:
aws sts get-caller-identity
aws configure get regionWhen to use it
- A system administrator uses the AWS Console to diagnose a failed EC2 instance by viewing its system log output without writing CLI commands.
- A developer uses the S3 Console to visually upload a file and preview its permissions via the GUI before automating the process.
- A cloud architect uses the Console's VPC resource map to visualize the network topology of a newly inherited AWS account.
More examples
Get Account ID for Console URL
Retrieves your AWS account ID, which you need to construct sign-in links or find your console login URL.
ACCOUNT=$(aws sts get-caller-identity --query Account --output text)
echo "Console: https://console.aws.amazon.com/"
echo "Account: ${ACCOUNT}"List EC2 Instances (Console View)
Replicates the EC2 instance list view from the Console using the CLI, showing the same resource data in tabular form.
aws ec2 describe-instances \
--query 'Reservations[].Instances[].{ID:InstanceId,State:State.Name,Type:InstanceType,Name:Tags[?Key==`Name`].Value|[0]}' \
--output tableSwitch Regions Like Console Dropdown
Demonstrates the CLI equivalent of the Console region switcher, scoping commands to a chosen AWS region.
# Equivalent to clicking the Region dropdown in the Console
export AWS_DEFAULT_REGION=eu-west-1
aws s3 ls
# Or scope a single command to a different region
aws ec2 describe-instances --region ap-southeast-1
Discussion