S3 buckets are default created in the region that is set in the AWS configure profile, if you want to create an S3 bucket in a specific region you can make use of the option --region followed by the region name.
Example: Create a bucket in us-east-1 region
% aws s3 mb s3:\\my-unique-bucket-name --region us-west-1
Example: Create a bucket in eu-west-1 region
% aws s3 mb s3:\\my-unique-bucket-name --region eu-west-1
As you can see in the below example, I have the default region set to us-west-1, when I create a new s3 bucket in us-east-1 region, I can do an ls with --region us-east-1 to see all the buckets in that specific region
% aws configure get region
us-west-1
% aws s3 mb s3:\\c2c-bucket-1 --region us-east-1
make_bucket: c2c-bucket-1
% aws s3 ls --region us-east-1
2022-08-16 23:48:37 c2c-bucket-1

If you do not have permission to create buckets in a specific region you will get AccessDenied on CreateBucket and ListBuckets operations.
% aws s3 mb s3://c2c-bucket-2 --region us-east-2
make_bucket failed: s3://c2c-bucket-2 An error occurred (AccessDenied) when
calling the CreateBucket operation: Access Denied
- Quick way to install AWS CLI for macOS Terminal
- How to Setup AWS Credentials using Visual Studio Code
- AW3 CLI command to get list of all region names
- AWS S3 CLI BucketAlreadyExists when calling CreateBucket Error make_bucket failed
- [Solution] AWS Java SDK S3 AmazonS3Exception InvalidAccessKeyId
- How to install AWS CLI on Ubuntu
- Fix AWS CLI 2 SignatureDoesNotMatch Error - Signature we calculated does not match
- [Solution] com.amazonaws.dynamodb.v20120810 MissingAuthenticationToken Key Id or X.509 certificate
- How to install AWS Toolkit for Visual Studio Code
- Create an S3 bucket in a specific AWS region using CLI Command
- Get the total size and number of objects of a AWS S3 bucket and folders
- Most Essencial AWS CLI 2 S3 ls Command Options
- Setting and Updating AWS CLI Configuration
- Create S3 bucket using AWS CLI Command mb
- Quick way to setup AWS DynamoDB locally on macOS
- Open VS Code Command Palette using Keyboard Shortcut - Shortcuts
- Alternatives for Notepad++ on Mac in 2021 - NotepadPlusPlus
- [Java] Generate Getters and Setters in VS Code - Java
- Export aborted because fatal lint error were found - Android
- How to Enable spellcheck Notepad++ - NotepadPlusPlus
- How to adjust MacBook Desktop icons size - MacOS
- Python range() function examples - Python
- What is an Authorization Code Grant? OAuth 2.0 - HowTos