An open API service indexing awesome lists of open source software.

https://github.com/robb/urlrequest-aws

An extension on URLRequest to sign it for AWS.
https://github.com/robb/urlrequest-aws

aws swift

Last synced: 12 months ago
JSON representation

An extension on URLRequest to sign it for AWS.

Awesome Lists containing this project

README

          

# URLRequest+AWS

An extension on `URLRequest` to sign it for AWS.

## Example Usage

```swift
var request = URLRequest(url: URL(string: "https://iam.amazonaws.com/?Action=ListUsers&Version=2010-05-08")!)

request.sign(credentials: credentials, date: date, region: "us-east-1", service: "iam")
```