Skip to content

Instantly share code, notes, and snippets.

@mekyush
mekyush / AWS.cls
Last active June 17, 2020 16:28 — forked from patrick-fischer/AWS.cls
AWS Authentication using Query Parameters (AWS Signature Version 4): https://docs.aws.amazon.com/AmazonS3/latest/API/sigv4-query-string-auth.html
/**
// Example implementation as follows:
public class AWSGetService extends AWS {
public AWSGetService() {
super();
}
public override void init() {
endpoint = new Url('https://XXXXXXXX.execute-api.us-east-1.amazonaws.com/Test');
resource = '/';
region = 'us-east-1';