2025-03-14 21:59:59 -06:00
|
|
|
# aws s3 mb
|
|
|
|
|
|
|
|
|
|
> Create S3 buckets.
|
2026-02-18 06:55:01 -07:00
|
|
|
> More information: <https://docs.aws.amazon.com/cli/latest/reference/s3/mb.html>.
|
2025-03-14 21:59:59 -06:00
|
|
|
|
|
|
|
|
- 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`
|