>_).

The command line environment interface appears. CloudShell comes pre-integrated with the AWS CLI, and you are automatically authenticated with the permissions of the IAM User you are logged in as.
Copy and Paste the command below into the Terminal of CloudShell to install tools to support text processing on the command line.
sudo yum -y install jq gettext bash-completion

pip install cfn-lint

cfn-lint --version

pip install taskcat

export ACCOUNT_ID=$(aws sts get-caller-identity --output text --query Account)
export AWS_REGION=$AWS_REGION
export AZS=($(aws ec2 describe-availability-zones --query 'AvailabilityZones[].ZoneName' --output text --region $AWS_REGION))

echo "export ACCOUNT_ID=$ACCOUNT_ID" | tee -a ~/.bash_profile
echo "export AWS_REGION=$AWS_REGION" | tee -a ~/.bash_profile
echo "export AZS=${AZS[@]}" | tee -a ~/.bash_profile
aws configure set default.region $AWS_REGION
aws configure get default.region
