HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

aws s3 mb — Create S3 buckets. More information: <https://docs.aws.amazon.com/cli/latest/reference/s3/mb.html>.

Submitted by: @import:tldr-pages··
0
Viewed 0 times
httpscreatecommandcliinformationaws s3 mbmorebuckets

Problem

How to use the aws s3 mb command: Create S3 buckets. More information: <https://docs.aws.amazon.com/cli/latest/reference/s3/mb.html>.

Solution

aws s3 mb — Create S3 buckets. More information: <https://docs.aws.amazon.com/cli/latest/reference/s3/mb.html>.

Create an S3 bucket:
aws s3 mb s3://{{bucket_name}}


Create an S3 bucket in a specific region:
aws s3 mb s3://{{bucket_name}} --region {{region}}


Display help:
aws s3 mb help

Code Snippets

Create an S3 bucket

aws s3 mb s3://{{bucket_name}}

Create an S3 bucket in a specific region

aws s3 mb s3://{{bucket_name}} --region {{region}}

Display help

aws s3 mb help

Context

tldr-pages: common/aws s3 mb

Revisions (0)

No revisions yet.