Contents

benspratling4/SwiftAWSS3

Amazon AWS S3 convenience

Common

  1. Create a bucket with your bucket name and region

let bucket = AWSBucket(name: "", region: "")

  1. Crete a request for a particular action using one of the method listed below
  1. Sign the request with your AWSAccount

let awsAccount = AWSAccount(serviceName: "s3", region: "", accessKeyID: "", secretAccessKey: "")

request.sign(for: awsAccount)

  1. Do whatever it is you do to use a URLRequest

GET

  1. Create a URLRequest for a particular object name, including the leading /.

guard var request:URLRequest = bucket.requestToGETObjectNamed("") else ...

PUT

  1. Instantiate an S3PutComponents instance with the bucket, object name and data
  1. Add optional properties, like an acl, mimetype or server side encryption
  1. Use the .request property to get a URLRequest

DELETE

  1. With your AWSBucket instance, create a request to delete an object.

guard var request:URLRequest = bucket.requestToDELETEObjectNamed("my object name ") else ...

In development

Please make feature requests or pull requests as needed

Package Metadata

Repository: benspratling4/SwiftAWSS3

Stars: 3

Forks: 3

Open issues: 1

Default branch: master

Primary language: swift

README: README.md