Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

how to store file into folder bucket aws

#store the lambda Generate csv file into folder inside the bucket.
s3 = boto3.resource('s3')
s3.Object('bucket-name', 'folder-name/file-name.csv').put(Body=open('/tmp/file-name.csv', 'rb'))
 
PREVIOUS NEXT
Tagged: #store #file #folder #bucket #aws
ADD COMMENT
Topic
Name
5+2 =