Skip to content

Latest commit

 

History

History
19 lines (12 loc) · 447 Bytes

README.md

File metadata and controls

19 lines (12 loc) · 447 Bytes

AWSS3

AWS S3 Interface for Julia

Build Status

Documentation

using AWSS3

aws = AWSCore.aws_config()

s3_create_bucket(aws, "my.bucket")
s3_enable_versioning(aws, "my.bucket")

s3_put(aws, "my.bucket", "key", "Hello!")
println(s3_get(aws, "my.bucket", "key"))