This channel is seriously underrated. I have rarely seen explanations this detailed and easy to understand. Normally 'gurus' just fly through the material as if you were supposed to know it already.
I subscribed because you don't have any of that distressing background music. Honestly, as someone on the spectrum, I really really appreciate no background music. Also - thank you for sharing this information. Great video! 🌻🌿🌅
Wait… so I’ve been burning time on a million useless tutorials when this gem of a channel already exists? Your style is amazing TTT, I’m instantly subbed, thank you! 🏆
Very nice. I've worked as a business analyst or product owner on AWS projects for years. Never actually wrote a lambda function. Your description of the process was very concise and easy to follow.
@@TinyTechnicalTutorials I got my Cloud Practitioner cert and I'm working on my Solution Architect cert later this year. Your channel and TechWithLucy are a great help.
Wow!!! I so understand now how a "Trigger" works!!! This is something I didn't fully get without seeing it in action! Thank u so much for shedding light on Lambda and S3!!! You Rock!!!😁
Great video! 👏👏👏 Strictly speaking, AWS lambda has the benefit of automatic *horizontal* scalability (or elasticity), so it's (auto)scaling *out/in*. It's not vertical scalability (scaling up/down). Also important is to mention the challenges (not necessarily disadvantages), such as cold starts, which you experienced in the demo after the first upload. Special kudos for reminding us to delete resources at the end of your videos! 🙏
This is an excellent introduction into Lambda that I was looking for! Please keep making such videos, they're great! P.S. Also, greate courses on Plural, thanks for those too
Hi Rahul! 😊 Thanks for asking! For AWS courses, I've got a few: -Cloud Practitioner (on Zero to Mastery): academy.zerotomastery.io/a/aff_n20ghyn4/external?affcode=441520_lm7gzk-d -Cloud Practitioner (on Udemy): www.udemy.com/course/aws-certified-cloud-practitioner-master-aws-fundamentals/ -Solutions Architect Associate (on Zero to Mastery): zerotomastery.io/courses/aws-certified-solutions-architect-bootcamp/
Thanks for this great mini tutorial, powerful direct to the point and very well directed - what I would want to know is how to run the lambda from a remote server, like a remote lInux server that you use as a development server. It would be great to have a tutorial about this.
Thanks for the kind words, Michel! 🙏😊 I'll add this to my list of topics for future videos. In the meantime, maybe this will help? docs.aws.amazon.com/serverless-application-model/latest/developerguide/serverless-sam-cli-using-invoke.html
@@TinyTechnicalTutorials Great AWS link to the Lambda help page. Thank you. I wish you could do a tutorial on how to access/launch the Lambda function using a URL (and of course how to protect that endpoint is The function is accessed that way).
2024. Minor changes to the UI, but still easy to find. Was able to create my first lambda func (I went with the blueprint). Thank you for your work on these AWS videos.
@@TinyTechnicalTutorials Our current project is AWS-intensive, so I will hang around your channel for a while hehe. Really enjoying your bite-sized sessions.
Hi there! I truly enjoyed the video, it was simple to understand, easy to follow, and your explanations are spot on without having to Google other things! ( you know how it goes! ) Anyways, thank you for this post! You earned yourself a new subscriber!
Thank you. Brief comment about Lamba invocation modes and why Lamba is typically used in conjunction with API gateway will be very helpful in your next video
Amazing tutorial! I'm going to be attending an AWS Learning Series Event in Mexico City this week to become a Cloud Support Engineer and your videos are super helpful. Thank you so much. Regarding Lambda functions, what are the layers of a Lambda function for? I've seen it as a convenient practice but still don't understand too much about its usage
Thanks for the kind words, Miguel!! 🥰 And I hope you enjoy your event in Mexico City! Lambda layers are basically a way to re-use code across multiple Lambda functions. They usually contain third-party libraries, data or runtimes that any Lambda function can access. This article actually does a good job of explaining it, along with some examples: plainenglish.io/blog/everything-you-need-to-know-about-aws-lambda-layers-bf1aea363289. Hope that helps! 🤓
Your video is nice. But there could be some more explanation. For instance, where did you got that script. Is it something you wrote, or people can get those codes somewhere else. After setting up the lambda function what else? Is there any place people can see the output. I know this question might be funny for many but those are the question might come for a person who just started learning it. frankly speaking, I had same question while I was learning. Thanks for your tutorial.
Thanks for that feedback! Very valid points. 😊 I can include more detail in my next Lambda video. But to answer the question, yes, I wrote that script myself. And by default, the "print" statements in the function will output to CloudWatch when the Lambda function runs. Or, if you write the code for it, you can also output those things to the UI of a web application, for example. Hope that helps! 🤓
Thanks so much, Parker! 🌟🙏😊 If you're using a library that isn't a common one, you can use Lambda Layers to add it. Here's a walk-through that might help: www.linkedin.com/pulse/add-external-python-libraries-aws-lambda-using-layers-gabe-olokun/
This tutorial is awesome! I had to laugh, though, when I saw at 11:38 that this took 69 MB of memory. I'll have to learn more about AWS network overhead.
I also wanted to use the media convert service for my VOD website. Do I add the trigger from my s3 bucket where I upload my videos files and then add the destination to the media convert?
Hey @BOSSBROC! 👋 Yep, you'd trigger the function to run when a new item is uploaded to the S3 bucket. I'm not sure what the media convert part of your app looks like, but yeah, your Lambda function would basically grab the video from S3 and then pass it to whatever is doing the conversion.
Hi Felipe!! Thanks for watching. 😊 The contents of the event parameter can vary. If you're setting it up in custom code, it can contain whatever you want. Or if another AWS service is calling it, then that service will define what it contains. Here's a little more detail that might help: docs.aws.amazon.com/lambda/latest/dg/gettingstarted-concepts.html#gettingstarted-concepts-event
Great tutorial, in my lamda function i can't able to see and edit the code source, it is showing " unable to retrieve source code of your lamda function.please check your browser security policy or network configuration" how to solve this issue.
does this function, transfer the file immediately because the s3 bucket changed or is there a way to wait until all the files are in the s3 bucket, thank you, the video is done well
Thanks for the kind words, @Megabyterex! 🌟🤓🙏 With S3, it can trigger Lambda when an object is created or deleted. So there's not a simple way to wait for multiple files before triggering (there's no way to know when "all" the files are uploaded). But I found a pretty good thread here about some workarounds that might help? www.reddit.com/r/aws/comments/u1r7ol/is_there_a_way_to_wait_for_all_files_to_be/
Thanks a lot. So the difference with Elastic Beanstalk is that here you run functions that are triggered by an action and in elastic beanstalk you run code without worrying of the server maintenance like autoscaling, sec groups etc?
Hi Alguien! You got it! With Lambda, you're running functions (so blocks of code that typically just handle one part of an app). With Elastic Beanstalk, you're deploying an entire app. But you're right...in both cases, the underlying infrastructure is all handled for you. Thanks for watching!
@@TinyTechnicalTutorials Well have gotten stuck in the API gateway, in the stages part but this basic idea is so appealing I'm going to plow though. Gread vid!
Hi Diren! 👋 This particular function doesn't output anything to an S3 bucket; it just grabs the file from S3 as input, then writes the content type to the CloudWatch logs. But here's an example of how you could output something to S3: saturncloud.io/blog/how-to-upload-a-file-to-amazon-s3-using-a-lambda-function/. Hope that helps...thanks for watching! 🙏🤓🌟
Hi Blayne! 👋😊 I'll add this to my list for future videos. In the meantime, here are a couple links that might be helpful: aws.amazon.com/getting-started/hands-on/launch-a-wordpress-website/ themeisle.com/blog/install-wordpress-on-aws/#gref
Check out my latest Lambda video that uses the updated Lambda console editor: ruclips.net/video/e1tkFsFOBHA/видео.html 🤓🤓
This channel is seriously underrated. I have rarely seen explanations this detailed and easy to understand. Normally 'gurus' just fly through the material as if you were supposed to know it already.
Awww, shucks, Nick! This comment made my day...thanks so much! 😊
@@TinyTechnicalTutorials Glad to hear it. Thank you for your work )
I totally agree, it's a detailed yet clear explanation
Agreed!
Awesome! Please don’t stop making videos. We are lacking quality content. Love your style of teaching. All the best ❤ !
Thanks for the nice comment, Shashank! I'll keep going! 😊
I subscribed because you don't have any of that distressing background music. Honestly, as someone on the spectrum, I really really appreciate no background music. Also - thank you for sharing this information. Great video! 🌻🌿🌅
Welcome to the channel, and thanks for the nice comment! 😊 I actually struggle with background music in videos too...silence is sweeter. 🥰
It's beautiful with no background noise. Super easy to follow along.
Fantastic. So clear and easy to understand!! This is so much better than the other tutorials out there.
Thanks so much, Patricia! Really appreciate the nice comment! :)
Wait… so I’ve been burning time on a million useless tutorials when this gem of a channel already exists? Your style is amazing TTT, I’m instantly subbed, thank you! 🏆
@ozzyfromspace - I love your name! 🥰 Welcome to the channel!! Great to have you onboard. Thanks for watching, and for such a nice comment! 🙏🌟🤓
Very nice. I've worked as a business analyst or product owner on AWS projects for years. Never actually wrote a lambda function. Your description of the process was very concise and easy to follow.
Yay! I'm so glad it was helpful. Thanks for watching, and for the nice comment! 🙏🌟🤓
@@TinyTechnicalTutorials I got my Cloud Practitioner cert and I'm working on my Solution Architect cert later this year. Your channel and TechWithLucy are a great help.
Oh, that's so great! CONGRATS! 🔥💪 And yes, @TechWithLucy is the best!
You speak so wonderfully clearly, and I love how you clean & tidy things up at the end. Thanks!
Awwww, thanks for the nice comment, Andrew! 😊
Wow!!! I so understand now how a "Trigger" works!!! This is something I didn't fully get without seeing it in action! Thank u so much for shedding light on Lambda and S3!!! You Rock!!!😁
Yay!! I'm really thrilled these videos are so helpful!! Thanks for another nice comment! :)
@@TinyTechnicalTutorials Super Helpful! And you're always very welcome!
This is the best AWS tutorial I've come across on RUclips
Awwww...thanks for watching, and for such a nice comment (and sorry for the slow response)! 🥰🔥
I wish if everyone on RUclips making Tutorial to learn from you how to deliver the content.
Thank You.
Ahhhh, you're too kind!! Thanks for such a nice comment...made my day! :)
This is what every viewer needs... Great content in short videos..
Awww...thank you SO much! 🥰🌟
This is by far the best explanation on a AWS service I've seen, you got yourself another sub!
Awesome!! Welcome to the channel, Luis Alberto! 😎🌟🔥
Great video! 👏👏👏 Strictly speaking, AWS lambda has the benefit of automatic *horizontal* scalability (or elasticity), so it's (auto)scaling *out/in*. It's not vertical scalability (scaling up/down). Also important is to mention the challenges (not necessarily disadvantages), such as cold starts, which you experienced in the demo after the first upload. Special kudos for reminding us to delete resources at the end of your videos! 🙏
@PauloMerson - Special kudos to YOU for taking the time to add this comment! 💪🔥🤓 Really appreciate it, and it's all true!
Really ...very well done 🏆. Clear, concise and practical. Such quality content is sooo welcomed.
Awwww, shucks! Thanks so much for the nice comment! 🥰
Your teaching style is phenomenal as it so easy to digest. Thank you so much for all your teachings.
Awwwww...thank you SO much!! 🙏🌟🥰 Really appreciate the support!
How in seven Heavens did I not find this channel until now! Thanks a ton. Great explanation
Yay! I'm so glad it helped. Thanks for watching! 🤓🌟🙏
I just found this in 2024. Thank you for making these videos.
Yay!! I'm so glad it was helpful. Thanks for watching, and for the nice comment!! 🙏🤓🌟
This is more than a Tiny Technical Tutorial! Thank you.
Thanks for watching, Ahmed! 😊
I just chanced on your channel and kind of addicted to it. New to AWS coming from the world of Azure. You have a gift in teaching.
Welcome to the channel, Nana! I'm so glad you're enjoying the videos! 🥰
Thank you for taking the time to make such a clear and helpful tutorial!
Yay! I'm so glad it helped. And thank YOU for taking the time to leave such a nice comment...it made my day! 🤓🌟🙏
Wow the precision is next level, found this channel to be incredibly useful to get consice info in limited time.
Oh, I'm so glad!! That's what I'm going for...short videos packed with lots of good info. Thanks for such a nice comment! 🥰🤓🙏
What a perfectly explained process. Thank you! This has made lambda much more understandable for me.
You're very welcome! I'm so glad it helped. Thanks for the nice comment!! 🤓🌟🙏
You explain so clearly, thank you! Would love to see more aws content
Thanks so much, Jessika! More to come! 😊
This is an excellent introduction into Lambda that I was looking for! Please keep making such videos, they're great!
P.S. Also, greate courses on Plural, thanks for those too
Thanks for the nice comment, Alex! So glad you're enjoying them!! :)
Hi Rahul! 😊 Thanks for asking! For AWS courses, I've got a few:
-Cloud Practitioner (on Zero to Mastery): academy.zerotomastery.io/a/aff_n20ghyn4/external?affcode=441520_lm7gzk-d
-Cloud Practitioner (on Udemy): www.udemy.com/course/aws-certified-cloud-practitioner-master-aws-fundamentals/
-Solutions Architect Associate (on Zero to Mastery): zerotomastery.io/courses/aws-certified-solutions-architect-bootcamp/
Great video and quick to learn. Keep making more. I have learned S3 and lambda in one go
Awesome! I'm so glad. Thanks for watching! 😊
You are awesome!!! your way of teaching is so easy to understand. best regards from switzerland😍
Wow, thanks so much! 🥰
The presentation was flawless
Thanks so much!! 🥰
As always, fantastic tutorial, now I understand more detailedly about Lambda. Thanks a lot.
Thanks so much, Eddie!! Glad it helped! 🤓🌟
Tutorial is clear and crisp. Thank you!
Glad it helped! Thanks for watching!! 🤓🙏🌟
you are awesome, you made AWS concepts easy to understand, Thank you so much. And I feel your channel is underrated
Glad it was helpful! Thanks for watching! 🙏🤓🌟
Top drawer tutorial. Great voice. Friendly. Does not assume much prior knowledge. Everything explained. I approve ;)
Oh awesome! Thanks for such a nice comment, Harry! 😊🙏🌟 I've never been called "top drawer" before! 😂
Thank you for the wonderful tutorial! Also very valuable and refreshing to hear from a female Developer. 😍
You're very welcome! Glad it helped! 😊
This was so easy to understand! Awesome tutorial!!
Yay! I'm so glad it was helpful! Thanks for watching! 😊😎🙏
Thanks for this great mini tutorial, powerful direct to the point and very well directed - what I would want to know is how to run the lambda from a remote server, like a remote lInux server that you use as a development server. It would be great to have a tutorial about this.
Thanks for the kind words, Michel! 🙏😊 I'll add this to my list of topics for future videos. In the meantime, maybe this will help? docs.aws.amazon.com/serverless-application-model/latest/developerguide/serverless-sam-cli-using-invoke.html
@@TinyTechnicalTutorials Great AWS link to the Lambda help page. Thank you. I wish you could do a tutorial on how to access/launch the Lambda function using a URL (and of course how to protect that endpoint is The function is accessed that way).
Added to my list! 😎
I just found a amazing RUclipsr after a long time
Thank you
Awwww, shucks! Thanks so much for the nice comment. And welcome! 😊
Great video with such clarity and precision! 👍🏻
That's great to hear! Thanks for watching, Dikshya! :)
Bravo! Particularly for pushing back effectively on "serverless". Much needed purge of cognitive dissonance generated by sloppy language/semantics
Thank you!! 😊 Yes, obviously there IS a server running somewhere! 😁
Only video that helped me learn AWS Lamba!. Thank you!
Oh, that's awesome! I'm so glad it helped! 🥰
excellent work!. voice is so clear and nice and content is to the point.
Wow, THANKS so much!!! 🙏🌟🤓
Great presentation, very clear, concise and useful
Thanks so much, Saeid! Glad you enjoyed it! :)
Thanks a million, for making easy to understand tiny videos 😍
You bet! Thanks for watching! 🙏🤓🌟
2024. Minor changes to the UI, but still easy to find. Was able to create my first lambda func (I went with the blueprint). Thank you for your work on these AWS videos.
Wohooo!! Nice work, Kat! 💪🔥 Yes, the UI changes are hard to keep up with...glad you were able to still figure it out!
@@TinyTechnicalTutorials Our current project is AWS-intensive, so I will hang around your channel for a while hehe. Really enjoying your bite-sized sessions.
Yay! Happy to have you here! 😊
Been watching for a while now, TinyFlix needs to happen! 😅 Thank you 🙏
LOL! One day! 😄 Thanks for watching!
Hi there! I truly enjoyed the video, it was simple to understand, easy to follow, and your explanations are spot on without having to Google other things! ( you know how it goes! )
Anyways, thank you for this post! You earned yourself a new subscriber!
Welcome to the channel, Flex, and thanks for the kind words!! 🥰🙏🌟
This is an excellent video - cohesive and simple. Great job!! 🌟
Glad it was helpful! Thanks for watching! 😊🙏🌟
Nice Explanation of aws lambda...
Please create a playlist for all the aws data analytics services..
Ooh, great idea! I'll add this to my to-do list. 😊
What else do you want to learn about AWS? Let me know below in the comments!
Please keep them coming. I am getting into AWS after projects strictly in Azure world, so these are quite helpful.
Welcome to the other side, Anil! :) Stay tuned for more!
Thank you. Brief comment about Lamba invocation modes and why Lamba is typically used in conjunction with API gateway will be very helpful in your next video
Thanks for the suggestion, Nahi! :)
My suggestion: using Cloud9 to test a lambda function
Wow! This channel is a gold mine!! Thank you so much!!!
Wow, what a nice comment! Thanks so much for watching! 🙏🤓🌟
Super helpful and clearly spoke, thanks for the quality content!
Yay!! I'm so glad it helped. Thanks for watching! 🙏🌟🤓
So fabulously crisp'd explanation... Looking forward for more AWS services video. Please keep sharing and making such videos. 💌🤟
Awww...thanks for such a nice comment, satyen! Much appreciated! 😊
Really great video! Clear and precise explanation ! Thank you! Can you also do a video on AWS API gateway with example? Thanks!
Thanks, S K M! Great suggestion! I've added it to my list!
Hi S K M! Just published this one about Lambda and API Gateway: ruclips.net/video/jgpRAiar2LQ/видео.html. Enjoy! :)
@@TinyTechnicalTutorials thank you so much! Going to check it out now!
Great pace and points of explanation.
Glad it was helpful! Thanks for watching! 🙏🤓🌟
Very well explained and easy to understand. I love the content.
I'm so glad!! Thanks for supporting the channel! 🙏🤓🌟
this is great. it's very engaging and easy to follow along. Oh, "auto-magically" is a hilarious term lol
Haha...so much magic! 🥰 Glad it helped...thanks for watching!
Love it! Right to the point and so clear. Thank you.
You bet! Glad it helped. Thanks for watching, and for the nice comment! 🙏🤓🌟
Super.. great video for AWS lambda beginners.. knowledgeable.. Thank you..!!❤
Glad you liked it! Thanks for watching! 🌟🙏😊
Amazing tutorial! I'm going to be attending an AWS Learning Series Event in Mexico City this week to become a Cloud Support Engineer and your videos are super helpful. Thank you so much. Regarding Lambda functions, what are the layers of a Lambda function for? I've seen it as a convenient practice but still don't understand too much about its usage
Thanks for the kind words, Miguel!! 🥰 And I hope you enjoy your event in Mexico City!
Lambda layers are basically a way to re-use code across multiple Lambda functions. They usually contain third-party libraries, data or runtimes that any Lambda function can access. This article actually does a good job of explaining it, along with some examples: plainenglish.io/blog/everything-you-need-to-know-about-aws-lambda-layers-bf1aea363289.
Hope that helps! 🤓
Thanks a lot Amber! :) This resource was very helpful @@TinyTechnicalTutorials
Your video is nice. But there could be some more explanation. For instance, where did you got that script. Is it something you wrote, or people can get those codes somewhere else. After setting up the lambda function what else? Is there any place people can see the output. I know this question might be funny for many but those are the question might come for a person who just started learning it. frankly speaking, I had same question while I was learning. Thanks for your tutorial.
Thanks for that feedback! Very valid points. 😊 I can include more detail in my next Lambda video. But to answer the question, yes, I wrote that script myself. And by default, the "print" statements in the function will output to CloudWatch when the Lambda function runs. Or, if you write the code for it, you can also output those things to the UI of a web application, for example. Hope that helps! 🤓
thanks for sharing this video, this is very simple and easy to understand.
I'm so glad it helped! Thanks for watching, and for the nice comment! 🤓🙏🌟
I recently starting following u and i find ur videos quite usefull, tnx!
Welcome, Stefan! Thanks for the nice comment! 😊
You're a very good teacher, I just subscribed
Thanks so much, Chembeer! Welcome to the channel! 😊
Very clear tutorial. Thanks a lot! Subscribed.
Welcome to the channel! I'm so glad it helped. Thanks for watching!! 🙏🤓🌟
Great Stuff.. One of the best vids on the internet regarding this topic.. Many thanks for sharing !!
Yay! I'm so glad!! :)
Great demonstration thank you, how can i run just aws cli commands? using bash or something else thanks
Thanks for watching, Ofer! 🙏🌟🤓 Maybe this will get you started with the CLI? docs.aws.amazon.com/lambda/latest/dg/gettingstarted-awscli.html
Excellent explanation! 😀
Awwww...thanks for watching, and for such a nice comment (and sorry for the slow response)! 🥰🔥
I really appreciate this channel. Thank you!
I appreciate YOU! 🥰 Thanks for the support!
Love this video. What happens if a library you are using isn't recognized?
Thanks so much, Parker! 🌟🙏😊 If you're using a library that isn't a common one, you can use Lambda Layers to add it. Here's a walk-through that might help: www.linkedin.com/pulse/add-external-python-libraries-aws-lambda-using-layers-gabe-olokun/
Hands on is great to understand
I'm glad it helped! Thanks for watching! 😊
Thank you!!, very nice!, you are an excellent TEACHER!!!
You are VERY kind, Jhon!! Thanks for the kind words and for supporting the channel! 🌟🤓🙏
This was fantastic. Thank you. I liked and subscribed!
Yay!!! Welcome to the channel, and thanks for watching! 🙏🤓😊🌟
Excellent explanation!
Glad it was helpful! Thanks for watching! 🙏🌟😊
This tutorial is awesome! I had to laugh, though, when I saw at 11:38 that this took 69 MB of memory. I'll have to learn more about AWS network overhead.
LOL! I don't think I even noticed that part! 😊 But glad it was helpful...thanks for watching!
Thank you! The best explanation so far!
Awww, thanks! So glad it helped! 😊
Wow this resonated with me - great teaching method
I'm so glad! Thanks for watching! 🙏🌟🤓
prefect! so easy to learn with you!
Yay! That's so great to hear! Thanks for watching, and for such a nice comment!! 🤓🙏🌟
This tutorial is so great! Thank you!
Awesome! I'm so glad it was helpful. Thanks for watching! 😊🔥🌟
Thank you! Fantastic work. Subscribed and liked!
Awesome! Welcome to the channel, David! 😎💪🔥
Great video - clear and just what I wanted - thanks :)
Excellent! Thanks for watching! 😊
I also wanted to use the media convert service for my VOD website. Do I add the trigger from my s3 bucket where I upload my videos files and then add the destination to the media convert?
Hey @BOSSBROC! 👋 Yep, you'd trigger the function to run when a new item is uploaded to the S3 bucket. I'm not sure what the media convert part of your app looks like, but yeah, your Lambda function would basically grab the video from S3 and then pass it to whatever is doing the conversion.
Great presentation, very clear
Glad it helped! Thanks for watching! 🙏🤓🌟
Awesome tutorial! I just have one question, how can i know what the event parameter will have? I mean, how can we know what the JSON contents are?
Hi Felipe!! Thanks for watching. 😊 The contents of the event parameter can vary. If you're setting it up in custom code, it can contain whatever you want. Or if another AWS service is calling it, then that service will define what it contains. Here's a little more detail that might help: docs.aws.amazon.com/lambda/latest/dg/gettingstarted-concepts.html#gettingstarted-concepts-event
Great explanation.
I'm so glad! Thanks for watching! 🙏🌟🤓
I've subbed, this is great content. Soft voice, not Indian and have to mentally process the language barrier.
Welcome to the channel! 🥰🙏
@@TinyTechnicalTutorials really enjoying it so far! 😊
Great tutorial, in my lamda function i can't able to see and edit the code source, it is showing " unable to retrieve source code of your lamda function.please check your browser security policy or network configuration" how to solve this issue.
Hi Ahamed! Hmmm...I haven't seen that error before. Were you able to sort it out? Maybe try a different browser?
Amazing Explanation! Thanks!
Glad it was helpful! Thanks for supporting the channel! 🔥👍😊
Verify good and enjoyable videos, thank you!
Awww...thanks so much! I really appreciate the support! 😊🙏🌟
does this function, transfer the file immediately because the s3 bucket changed or is there a way to wait until all the files are in the s3 bucket, thank you, the video is done well
Thanks for the kind words, @Megabyterex! 🌟🤓🙏 With S3, it can trigger Lambda when an object is created or deleted. So there's not a simple way to wait for multiple files before triggering (there's no way to know when "all" the files are uploaded). But I found a pretty good thread here about some workarounds that might help? www.reddit.com/r/aws/comments/u1r7ol/is_there_a_way_to_wait_for_all_files_to_be/
Really well made tutorial.
Thanks for watching, Isuru! 😊
Thanks a lot. So the difference with Elastic Beanstalk is that here you run functions that are triggered by an action and in elastic beanstalk you run code without worrying of the server maintenance like autoscaling, sec groups etc?
Hi Alguien! You got it! With Lambda, you're running functions (so blocks of code that typically just handle one part of an app). With Elastic Beanstalk, you're deploying an entire app. But you're right...in both cases, the underlying infrastructure is all handled for you. Thanks for watching!
Great clear concise videos!!!
Glad you're enjoying them! Thanks for watching! 😊
Thanks for the tutorial. I appreciate you. :)
You're very welcome! Thanks for watching! 🤓🙏🌟
Literally using this video to "Create MY First AWS Lambda Function"
WOOT!!! 🔥💪 Good for you! Thanks for watching! 🙏🌟🤓
@@TinyTechnicalTutorials Well have gotten stuck in the API gateway, in the stages part but this basic idea is so appealing I'm going to plow though. Gread vid!
@@TinyTechnicalTutorials And think it might just be a browser issue but just watched you do API gateway so easily it gave me confidence :)
You got this!! 💪
Liked the way u teach, its interesting
Thank you so much! :)
It helped me a lot! Thank You!
Glad it helped! Thanks for watching! 😊
Thanks. Very concise and useful
Glad it was helpful! :)
can we monitor not the whole bucket but a specific folder inside the bucket for new files?
where do u specify the output S3 bucket? How do u tell the lambda function which S3 bucket should be the output?
Hi Diren! 👋 This particular function doesn't output anything to an S3 bucket; it just grabs the file from S3 as input, then writes the content type to the CloudWatch logs. But here's an example of how you could output something to S3: saturncloud.io/blog/how-to-upload-a-file-to-amazon-s3-using-a-lambda-function/. Hope that helps...thanks for watching! 🙏🤓🌟
I really love this tutorial
Thank you so much! :)
Please can you do a tutorial on how to deploy a wordpress website to aws?
Hi Blayne! 👋😊 I'll add this to my list for future videos. In the meantime, here are a couple links that might be helpful:
aws.amazon.com/getting-started/hands-on/launch-a-wordpress-website/
themeisle.com/blog/install-wordpress-on-aws/#gref