mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-02 23:43:09 +00:00
22 lines
420 B
Plaintext
22 lines
420 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# aws s3 mb
|
|
|
|
> Create S3 buckets.
|
|
> More information: <https://awscli.amazonaws.com/v2/documentation/api/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`
|