refer to code:
.
import boto3
# Initialize the S3 client
s3 = boto3.client('s3')
# Specify the source and destination S3 buckets and object keys
source_bucket = 'source-bucket-name'
source_key = 'path/to/source/object'
destination_bucket = 'destination-bucket-name'
destination_key = 'path/to/destination/object'
# Copy the object from the source bucket to the destination bucket
s3.copy_object(
CopySource={'Bucket': source_bucket, 'Key': source_key},
Bucket=destination_bucket,
Key=destination_key
)
print(f"Copied object from '{source_bucket}/{source_key}' to '{destination_bucket}/{destination_key}'")
..
Replace the placeholder values for source_bucket
, source_key
, destination_bucket
, and destination_key
with your actual bucket names and object keys. This code will copy the specified object from the source bucket to the destination bucket.
Thank you
🙇🏻♂️
www.marearts.com
No comments:
Post a Comment