0 votes
63 views
in Cloud by
I am new to AWS, may I know how can I create S3 bucket?

1 Answer

0 votes
by

To create a bucket in Amazon S3, you must have an Amazon Web Services (AWS) account and have the AWS Command Line Interface (CLI) installed on your computer.

Open a terminal or command prompt and make sure the AWS CLI is installed and configured with your AWS credentials.

Run the following command to create a bucket with the specified name, replacing my-bucket with the desired name for your bucket:

aws s3 mb s3://my-bucket

This will create a new bucket with the specified name in your default region. By default, the bucket will be private and only accessible to you, but you can change the access settings for the bucket if desired.

You can also specify additional options when creating the bucket, such as the region where the bucket should be created or the type of server-side encryption to use for the bucket. For more information and a full list of options, see the AWS CLI documentation for the AWS s3 mb command.

...