S3 (Simple Storage Service)
S3 is a highly scalable object storage service that allows you to store and retrieve data from anywhere on the web. Here is an example of how to create an S3 bucket using the AWS SDK for Python (boto3):
python
import boto3
s3 = boto3.resource('s3')
bucket = s3.create_bucket(Bucket='my-bucket')
This code creates an S3 bucket named "my-bucket".
Lambda
No comments:
Post a Comment