AWS API Gateway Introduction

  Рет қаралды 23,428

Be A Better Dev

Be A Better Dev

Күн бұрын

Learn about how AWS API Gateway works, its key features, and why it's such a popular AWS service.
Sign up for my Newsletter to receive regular AWS updates AND get a FREE PDF that includes 5 AWS Project Ideas: beabetterdev.com/aws-project-...
📚 My Courses 📚
AWS Learning Accelerator - Learn AWS Through a Hands On Project - courses.beabetterdev.com/cour...
AWS Step Functions Masterclass - courses.beabetterdev.com/cour...
AWS Lambda - A Practical Guide - www.udemy.com/course/aws-lamb...
🎉SUPPORT BE A BETTER DEV🎉
Become a Patron: / beabetterdev
📚 INCREDIBLE BOOKS TO BUILD YOUR ABILITY TO FOCUS AND ORGANIZE 📚
Deep Work - amzn.to/463oPRk
So Good They Can't Ignore You - amzn.to/3PPo48N
Digital Minimalism - amzn.to/3Q00nep
A World Without Email - amzn.to/3t6nGKq
Time Block Planner - amzn.to/44Z9nEI
📚 MY RECOMMENDED READING LIST FOR SOFTWARE DEVELOPERS📚
Clean Code - amzn.to/37T7xdP
Clean Architecture - amzn.to/3sCEGCe
Head First Design Patterns - amzn.to/37WXAMy
Domain Driven Design - amzn.to/3aWSW2W
Code Complete - amzn.to/3ksQDrB
The Pragmatic Programmer - amzn.to/3uH4kaQ
Algorithms - amzn.to/3syvyP5
Working Effectively with Legacy Code - amzn.to/3kvMza7
Refactoring - amzn.to/3r6FQ8U
🎙 MY RECORDING EQUIPMENT 🎙
Shure SM58 Microphone - amzn.to/3r5Hrf9
Behringer UM2 Audio Interface - amzn.to/2MuEllM
XLR Cable - amzn.to/3uGyZFx
Acoustic Sound Absorbing Foam Panels - amzn.to/3ktIrY6
Desk Microphone Mount - amzn.to/3qXMVIO
Logitech C920s Webcam - amzn.to/303zGu9
Fujilm XS10 Camera - amzn.to/3uGa30E
Fujifilm XF 35mm F2 Lens - amzn.to/3rentPe
Neewer 2 Piece Studio Lights - amzn.to/3uyoa8p
💻 MY DESKTOP EQUIPMENT 💻
Dell 34 inch Ultrawide Monitor - amzn.to/2NJwph6
Autonomous ErgoChair 2 - bit.ly/2YzomEm
Autonomous SmartDesk 2 Standing Desk - bit.ly/2YzomEm
MX Master 3 Productivity Mouse - amzn.to/3aYwKVZ
Das Keyboard Prime 13 MX Brown Mechanical- amzn.to/3uH6VBF
Veikk A15 Drawing Tablet - amzn.to/3uBRWsN
🌎 Find me here:
Twitter - / beabetterdevv
Instagram - / beabetterdevv
Patreon - Donations help fund additional content - / beabetterdev
#aws
#apigateway

Пікірлер: 26
@mrkostya008
@mrkostya008 5 ай бұрын
youtube didn't just place this gem in my recommendations. subscribed
@bennewton
@bennewton Ай бұрын
Excellent overview. Thank you.
@balsa7008
@balsa7008 2 ай бұрын
Great overview, thank you
@igorstavnitser8655
@igorstavnitser8655 4 ай бұрын
1st of all thank you for wonderfully organized and immediately useful contents! 2nd - there is a not publicly-advertised (but not secret) capability to increase gateway timeout beyond 30 seconds. This quota increase is ONLY available to Premium (Enterprise) Support customers. Customer does have to agree to lower RPS when API Gateway timeout is increased the formula is pretty simple. So if you want one minute timeout your RPS will be halved. (former Senior TAM here).
@ankitadixit5875
@ankitadixit5875 3 ай бұрын
are there any scopes for AWS TAM outside of AWS, I meant at professional level?thanks
@igorstavnitser8655
@igorstavnitser8655 3 ай бұрын
@@ankitadixit5875 there are similar roles in other clouds. There is a pathway to become s Solutions Architect, or maybe Account Manager (more sales-focused).
@rishiraj2548
@rishiraj2548 5 ай бұрын
Thanks
@nagrotte
@nagrotte 4 ай бұрын
Great video
@mdk1983
@mdk1983 4 ай бұрын
Very good content
@rahatsshowcase8614
@rahatsshowcase8614 4 ай бұрын
good job
@karimm3115
@karimm3115 2 ай бұрын
FYI: the underlying protocol for REST is HTTP. So, there is no protocol called "REST".
@martinmillar1536
@martinmillar1536 4 ай бұрын
There is a fourth entry point, which is the Lambda end point (which can be exposed externally). I'm doing small stuff, but that's what I use. I wonder how that fits in - maybe just for 'small stuff'?
@nulldivision
@nulldivision 5 ай бұрын
Thanks for the video. I've been using REST API gateway for a few years now, but the rest of the details about http and websockets were insightful. One remark, I think that there might be few more limitations to API Gateway. I think that there is a different limit for data response maybe? (5 mb?)
@matilha2020
@matilha2020 5 ай бұрын
There is also a 5k concurrent burst calls and 10k calls/sec
@abedmalak_
@abedmalak_ 3 ай бұрын
hi! AMazing video!! where can we find how to set it up ( like a tutorial )
@user-mx6qr3bg2l
@user-mx6qr3bg2l 5 ай бұрын
Hello - thank you for our video! I have an architecture question. If I have a public API and private API on the same server exposed by an internal ALB - the public API is exposed by a public API Gateway (resides outside the VPC), where as the private api is exposed by a Private API Gateway which is accessible through a VPN. Both of the API Gateways point to the internal ALB. Does this set up make sense to your or is there a better way to have a private API and publci API accessible to end users on the same server?
@johnsuckher3037
@johnsuckher3037 5 ай бұрын
25:20 it's per million :D
@tzvimashiach7728
@tzvimashiach7728 5 ай бұрын
Great video. Question for you: if I have an API Gateway connected to a REST API lambda, and I wanted to use a custom rate limiter lambda to check req count, would it be possible to have the gateway hit the rate limiter first to verify if the user is allowed to send the request, then hit the API? Kind of like an authorizer
@randomdev4653
@randomdev4653 5 ай бұрын
You can make the API Gateway hit a REST API Lambda that would be used as a middleware count checker first before routing the request to a second one that would handle user request. It's to optimize AWS profits, trust me, i know how to scale costs
@tzvimashiach7728
@tzvimashiach7728 5 ай бұрын
@@randomdev4653 Thanks! Would the API response go back through the API/rate-limiter lambda? Why not just put it all into one lambda in that case?
@randomdev4653
@randomdev4653 5 ай бұрын
@@tzvimashiach7728 Bro I'm so sorry that was meant to be a joke =/ My main objective as a software engineer is to scale costs, not performance ! So I do make Lambdas call some Lambdas, this way, they themselves can call other Lambdas etc.. Anyway, there is a AWS documentation about API Gateway rate limiting, check it out ! Good luck have fun my fellow human
@kevin179887
@kevin179887 5 ай бұрын
I thought this video was about AWS API gateway, not HTTP, REST, or Websockets. If you want to talk about those technologies, you should create a video about them.
@marknielsen4494
@marknielsen4494 4 ай бұрын
You should rethink that statement cuz it' makes no sense
@michellelunadev
@michellelunadev 4 ай бұрын
?
@yldrmcs
@yldrmcs 5 ай бұрын
please stop using such stupid services, just have your own api and do your thing. it's gonna be much faster believe me
@naetgween
@naetgween 5 ай бұрын
Newbie question but is it worth the added maintenance and what’s the typical cost difference for similar request rates?
AWS API Gateway tutorial ( Latest)
31:00
LoveToCode
Рет қаралды 20 М.
Survival skills: A great idea with duct tape #survival #lifehacks #camping
00:27
I CAN’T BELIEVE I LOST 😱
00:46
Topper Guild
Рет қаралды 98 МЛН
The child was abused by the clown#Short #Officer Rabbit #angel
00:55
兔子警官
Рет қаралды 24 МЛН
I wish I could change THIS fast! 🤣
00:33
America's Got Talent
Рет қаралды 110 МЛН
What is an API Gateway?
10:19
IBM Technology
Рет қаралды 294 М.
Intro to AWS - The Most Important Services To Learn
50:07
Be A Better Dev
Рет қаралды 391 М.
AWS Step Functions Introduction - What is it and Why is it Useful?
19:03
AWS SQS vs SNS vs EventBridge - When to Use What?
22:37
Be A Better Dev
Рет қаралды 167 М.
What is API gateway really all about? Java Brains - Brain Bytes
8:56
Application Load Balancer (ALB) Vs API Gateway // Pros Cons Comparison
14:04
Survival skills: A great idea with duct tape #survival #lifehacks #camping
00:27