Oreilly - AWS Serverless APIs & Apps - A Complete Introduction - 9781789954340
Oreilly - AWS Serverless APIs & Apps - A Complete Introduction
by Maximilian Schwarzmüller | Publisher: Packt Publishing | Release Date: October 2018 | ISBN: 9781789954340


Get into serverless computing with API Gateway, AWS Lambda and other Amazon Web Services! Zero server config APIs & SPAsAbout This VideoCreate your own API Gateway and Lambda and Use it for your projects.Effortlessly build applications on cloud services with serverless components.Manage and secure your applications using AWS toolsIn DetailThis course will introduce you to serverless computing and then quickly dive into how to build serverless apps with Amazon Web Services (AWS).Specifically, you will learn:To build a REST API without worrying about servers, using AWS API GatewaySet up your on-demand code via AWS LambdaExecute Lambda code whenever incoming requests reach your defined REST endpointsStore data in a database - naturally without managing any database servers!We won't stop here though! Instead, you'll then dive even deeper into serverless computing and learn:To add user authentication to your existing frontend apps and how you can then also protect your REST API against unauthenticated access with ease!how you can easily integrate a complete user sign up & sign in flow (including user confirmation) into ANY app (web app, iOS or Android app!) with AWS CognitoDeploy your web app in a serverless mannerSpeed up the delivery of your static web app assetsSecure your serverless appWhat else you can build with the services covered in this course and which other services might be interesting to you were to dive deeper regarding advanced development workflows.The code bundle for this video course is available at https://github.com/PacktPublishing/AWS-Serverless-APIs-and-Apps---A-Complete-Introduction
  1. Chapter 1 : Getting Started
    • Introduction 00:02:44
    • What is AWS? 00:01:52
    • What is Serverless Development? 00:05:36
    • AWS Signup & First Serverless API 00:08:31
    • Why AWS? 00:01:02
    • Course Structure 00:03:22
    • How to get the Most out of this Course 00:01:35
  2. Chapter 2 : The Core Serverless Services
    • Module Introduction 00:00:43
    • An Overview over the Core Serverless Services 00:05:31
    • The Course Project 00:02:51
  3. Chapter 3 : Creating an API with API Gateway & AWS Lambda
    • Module Introduction 00:00:55
    • What is API Gateway? 00:02:18
    • Accessing the API Gateway Console 00:01:04
    • General API Gateway Features 00:04:47
    • API-specific Features & Options 00:04:51
    • Introducing the Request-Response Cycle 00:04:38
    • Understanding the Request-Response Cycle 00:06:13
    • Creating a New API 00:03:19
    • Creating a Resource (= URL Path) 00:03:15
    • Handling CORS and the OPTIONS Preflight Request 00:04:11
    • Creating a (HTTP) Method 00:04:11
    • What is AWS Lambda? 00:02:46
    • Creating a Lambda Function 00:10:05
    • Connecting Lambda Functions to API Gateway Endpoints 00:01:27
    • Accessing the API from the Web & Fixing CORS Issues 00:07:25
    • Understanding "event" in Lambda Functions 00:01:59
    • Forwarding Requests with "Proxy Integration" 00:03:52
    • Accessing Lambda Logs 00:02:51
    • Getting Started with Body Mapping Templates 00:04:45
    • Extracting Request Data with Body Mapping Templates 00:04:09
    • What's the Idea behind Body Mappings? 00:02:10
    • Mapping Response Data 00:02:41
    • Using Models & Validating Requests 00:03:15
    • Models & Mappings 00:06:43
    • Next Steps 00:01:25
    • Adding a DELETE Method Endpoint to the API 00:02:25
    • Using Path Parameters 00:08:43
    • Accessing the API from the Web - The Right Way 00:07:11
    • Wrap Up 00:02:43
  4. Chapter 4 : Data Storage with DynamoDB
    • Module Introduction 00:00:44
    • What is DynamoDB? 00:02:50
    • How DynamoDB Organizes Data 00:04:58
    • NoSQL vs SQL 00:02:51
    • Using DynamoDB with Lambda 00:00:53
    • Creating a Table in DynamoDB 00:02:41
    • Understanding Read & Write Capacity 00:04:12
    • Creating and Scanning Items 00:02:16
    • What about multiple Databases? 00:01:21
    • Accessing DynamoDB from Lambda 00:04:36
    • Sidenote: How Lambda works behind the Scenes 00:01:42
    • Putting Items into a DynamoDB Table from Lambda 00:06:15
    • Setting Permissions Right 00:02:19
    • Using API Gateway (Request) Data for Item Creation 00:06:30
    • Mapping the Response & Web Testing 00:03:05
    • Scanning Data in DynamoDB from Lambda 00:07:52
    • Improving the IAM Permissions 00:04:30
    • Restructuring Fetched Data in Lambda 00:03:00
    • Getting a Single Item from DynamoDB via Lambda 00:05:38
    • Testing it from the Web & Passing Correct Data 00:01:37
    • Preparing "Delete" Permissions 00:02:49
    • Deleting Items in DynamoDB via Lambda 00:04:41
    • Mapping DynamoDB Responses 00:06:46
    • Wrap Up 00:01:50
  5. Chapter 5 : Authenticating Users with Cognito and API Gateway Authorizers
    • Module Introduction 00:01:33
    • How to add Authorization to API Gateway 00:02:13
    • Understanding Custom Authorizers (API Gateway) 00:04:01
    • Creating a Custom Authorizer Function 00:10:12
    • Using Custom Authorizers 00:05:51
    • Retrieving Users from Custom Authorizers 00:06:09
    • What is AWS Cognito? 00:02:28
    • Cognito User Pools and Federated Identities 00:01:31
    • Creating a Cognito User Pool 00:07:49
    • Understanding the Cognito Auth Flow 00:03:19
    • Adding Cognito to a Frontend App - Getting Started 00:05:28
    • Adding Signup to the Frontend App 00:12:01
    • Adding User Confirmation to a Frontend App 00:04:08
    • Adding Signin to a Frontend App 00:05:50
    • Managing User State with Cognito 00:03:49
    • Using a Cognito Authorizer with API Gateway 00:02:47
    • Passing the right User ID to Lambda 00:06:43
    • Using Query Params & Cognito from Lambda 00:07:59
    • Passing Query Params from the Frontend 00:03:50
    • Passing the User Id to the DELETE Endpoint 00:05:06
    • Wrap Up 00:01:46
  6. Chapter 6 : Hosting a Serverless SPA
    • Module Introduction 00:02:01
    • What is S3? 00:02:33
    • Creating a S3 Bucket 00:04:31
    • Uploading the Web App to the Bucket 00:02:47
    • Turning a S3 Bucket into a Static Webserver 00:03:40
    • Setting up Logging 00:01:53
    • Optimizing Content Delivery: What is AWS CloudFront? 00:02:28
    • Setting up a CloudFront Distribution 00:04:40
    • Finishing the CloudFront Setup 00:01:08
    • Using a Custom Domain: What is Route53? 00:01:15
    • Registering a Domain 00:01:53
    • Connecting a Domain to a CloudFront Distribution 00:07:02
    • Wrap Up 00:01:16
  7. Chapter 7 : Beyond the Basics - An Outlook
    • Module Introduction 00:03:13
    • Documenting an API 00:02:10
    • Other AWS Lambda Triggers 00:08:01
    • Going Serverless with a Node/ Express App (Non-API!) 00:01:59
    • Running Node/ Express Apps via Lambda + API Gateway 00:09:25
    • Pros and Cons of Serverless Node/Express MPA 00:03:08
    • Serverless Apps and Security 00:12:04
    • A Case of a Better Development Workflow 00:01:03
    • Getting to know the Serverless Framework 00:06:03
    • Getting to know SAM (Serverless Application Model) by AWS 00:03:40
    • Testing Serverless Apps with localstack 00:03:18
    • Other useful AWS Services 00:05:38
    • Wrap Up 00:01:12
  8. Chapter 8 : Course Roundup
    • Roundup 00:01:00
  9. Oreilly - AWS Serverless APIs & Apps - A Complete Introduction


 TO MAC USERS: If RAR password doesn't work, use this archive program: 

RAR Expander 0.8.5 Beta 4  and extract password protected files without error.


 TO WIN USERS: If RAR password doesn't work, use this archive program: 

Latest Winrar  and extract password protected files without error.


 Coktum   |  

Information
Members of Guests cannot leave comments.


SermonBox - Seasonal Collection

SermonBox - The Series Pack Collection

Top Rated News

  • Christmas Material
  • Laser Cut & Print Design Elements Bundle - ETSY
  • Daz3D - All Materials - SKU 37000-37999
  • Cgaxis - All Product - 2019 - All Retail! - UPDATED!!!
  • DigitalXModels Full Collections
  • Rampant Design Tools Full Collections Total: $4400
  • FilmLooks.Com Full Collection
  • All PixelSquid Product
  • The Pixel Lab Collection
  • Envato Elements Full Sources- 3200+ Files
  • Ui8.NET Full Sources
  • The History of The 20th Century
  • The Dover Collections
  • Snake Interiors Collections
  • Inspirational Collections
  • Veer Fancy Collections
  • All Ojo Images
  • All ZZVE Collections
  • All Sozaijiten Collections
  • All Image Broker Collections
  • Shuterstock Bundle Collections
  • Tattoo Collections
  • Blend Images Collections
  • Authors Tuorism Collections
  • Motion Mile - Big Bundle
  • PhotoBacks - All Product - 2018
  • Dekes Techniques - Photoshop & Illustrator Course - 1 to 673
Telegram GFXTRA Group
Udemy - Turkce Gorsel Ogrenme Setleri - Part 2
Videohive Wow Pack Series


rss