Skip to content

Instantly share code, notes, and snippets.

@rahulbhat
rahulbhat / workshops.md
Created July 10, 2018 01:23 — forked from triggan/workshops.md
re:Invent 2017 - Workshop Repositories

Workshops

A list of public repositories and content from re:Invent 2017 Workshops. Some of these repos also contain the slides from teh workshops as well, but not all. Many of the links are subject to be moved or completely removed at any point in time in the future.

Session ID Session Name Repo
ABD313 Building an End-to-End Serverless Data Analytics Solution on AWS https://github.com/aws-samples/serverless-data-analytics
AMF303 Deep Dive into the Connected Vehicle Reference Architecture https://github.com/awslabs/aws-connected-vehicle-solution
ARC325 Managing Multiple AWS Accounts at Scale https://github.com/aws-samples/arc325-multiple-accounts-workshop
@rahulbhat
rahulbhat / reinvent.md
Created July 10, 2018 01:20 — forked from henrysher/reinvent.md
link for reinvent slides
@rahulbhat
rahulbhat / csv_sum.js
Created July 4, 2018 17:36
aws lambda function - acloudguru lamdba course
const util = require('util');
const AWS = require('aws-sdk');
const S = new AWS.S3({
maxRetries: 0,
region: 'us-west-1',
});
exports.handler = async (event, context) => {
// Read options from the event.
@rahulbhat
rahulbhat / csv_read.js
Created July 4, 2018 17:13
aws lambda function - acloudguru lamdba course
const util = require('util');
const AWS = require('aws-sdk');
const S = new AWS.S3({
maxRetries: 0,
region: 'us-west-1',
});
exports.handler = async(event, context) => {
// Read options from the event.