Introduction to Cloud Computing

Cloud Computing - Chapter 1

Cloud Computing Tutorial

We appreciate your patience while we actively develop and enhance our content for a better experience.

Sample Code
import boto3

# Create an S3 client
s3 = boto3.client('s3')

# Set the name of the new S3 bucket
bucket_name = 'my-new-bucket'

# Create the S3 bucket in the 'us-east-1' region
s3.create_bucket(Bucket=bucket_name, CreateBucketConfiguration={'LocationConstraint': 'us-east-1'})

# Print the URL of the new bucket
print(f"New bucket created: https://{bucket_name}.s3.amazonaws.com")