7 Ways to Deploy Containers on AWS
17:14
AWS Lambda + Bedrock Tutorial
12:00
AWS CDK Crash Course for Beginners
1:07:31
AWS Workspaces Setup Tutorial
24:59
AWS API Gateway Introduction
27:48
The Big Problem With "Serverless"
6:34
Пікірлер
@Overthought1
@Overthought1 3 сағат бұрын
Of course bucket names support kebab-case! :D
@soufiyane.aitmoulay
@soufiyane.aitmoulay 12 сағат бұрын
where's the code used in the video ?
@786Peacelover
@786Peacelover 13 сағат бұрын
That’s exactly what I was looking for 😂. Thank you very much.
@enzima
@enzima 15 сағат бұрын
Amazing video, thank you!
@xxdeadstockxx
@xxdeadstockxx 15 сағат бұрын
Yeah Thanks for sharing this tutorial with us.
@jackyli257
@jackyli257 Күн бұрын
This is such high quality ! One advice is to break down the video with timed sections, this gives learners to focus on content area where we are weak in :)
@dibll
@dibll Күн бұрын
Could you pls create a video on the KMS service? Thanks
@RishiRajxtrim
@RishiRajxtrim Күн бұрын
Thanks
@RishiRajxtrim
@RishiRajxtrim Күн бұрын
🎉
@RishiRajxtrim
@RishiRajxtrim Күн бұрын
🎉
@InvincibleMan99
@InvincibleMan99 Күн бұрын
Excellent work. Hats off to you.
@abdelrahmanmostafa9489
@abdelrahmanmostafa9489 Күн бұрын
without proper rate limit that can lead to DOS by creating infinite requests with new tokens, overwhelming the database. you can intercept the request and change the token!
@LifeDude
@LifeDude Күн бұрын
Awesome
@abdraoufx
@abdraoufx Күн бұрын
Just what I needed to know 8:14
@abdraoufx
@abdraoufx Күн бұрын
Your channel is a hidden treasure
@eliteballer360
@eliteballer360 2 күн бұрын
what level of linux do i need to be?
@SurajPatil14
@SurajPatil14 2 күн бұрын
@regilearn2138
@regilearn2138 2 күн бұрын
Hi mate, please teach us how to upload file to the S3 bucket using lambda functions and how to do crud operation in dynamodb. using node and express react. I am new to AWS would appreciate if you can create a video on this.
@buildbetterbodies1
@buildbetterbodies1 3 күн бұрын
Good stuff.. Well explained... thanks
@duresabih
@duresabih 3 күн бұрын
Is there an updated video?
@Trendintopics-ye4vc
@Trendintopics-ye4vc 3 күн бұрын
IAM in Tamil full tutorial kzfaq.info/get/bejne/nt-BotZ91ribqas.htmlsi=SOoR9oTAYJhX_XPm
@rshack8879
@rshack8879 4 күн бұрын
i love you
@davelind4141
@davelind4141 4 күн бұрын
Thank you. I would have never wrapped my head around this, but you helped!
@IQUE928
@IQUE928 4 күн бұрын
incredible explanation, thank you!
@NirmalKumar-i7z
@NirmalKumar-i7z 4 күн бұрын
Excellent explanation, very easy to understand. Thank you very much!
@NirmalKumar-i7z
@NirmalKumar-i7z 4 күн бұрын
Excellent explanation , very easy to understand. Thank you very much!
@MurdexChannel
@MurdexChannel 5 күн бұрын
Here's the code for those who need it: import boto3 import json def lambda_handler(event, context): bedrock = boto3.client( service_name='bedrock-runtime', region_name = 'us-east-1' ) input = { 'modelId':'cohere.command-text-v14', 'contentType':'application/json', 'accept':'*/*', 'body': "{\"prompt\":\"What is AWS? \",\"max_tokens\":400,\"temperature\":0.75,\"p\":0.01,\"k\":0,\"stop_sequences\":[],\"return_likelihoods\":\"NONE\"}" } response = bedrock.invoke_model(body=input['body'], modelId=input["modelId"], accept=input["accept"], contentType=input["contentType"]) response_body = json.loads(response['body'].read()) print(response_body)
@kt4760
@kt4760 5 күн бұрын
Thanks for this. I had previously always bound events to a lambda functions. Binding to an SQS queue saves the extra resource definition. I noticed only standard queues are supported (when binding directly to SQS).
@janik6n
@janik6n 5 күн бұрын
I wish one day these tutorials will do the IAM properly without the hand-of-god option.
@MurdexChannel
@MurdexChannel 5 күн бұрын
I guess it's because they are meant for beginners. Changing the action on the access policy to SQS: SendMessage will provide limited access to S3 to follow principle of least privilige.
@janik6n
@janik6n 5 күн бұрын
@@MurdexChannel I think especially when you are beginner, you should understand the importance of IAM, even though it means additional layer of complexity to understand. As a consultant I see way too much AdminAccess and stars in real environments.
@OrsonChen-sg1yb
@OrsonChen-sg1yb 5 күн бұрын
So clear and the demonstration is easy to understand, THANK YOU!
@SagarSawant
@SagarSawant 5 күн бұрын
How to handle 410 gone exception?
@maidul13
@maidul13 6 күн бұрын
thanks, this was super helpful
@romanyfayiez3829
@romanyfayiez3829 6 күн бұрын
Thanks a lot or this awesome video!, great crash VPC content
@Haapavuo
@Haapavuo 6 күн бұрын
How to do this for an Android app instead of a Web app?
@TestDonCqmDJorr-qKDdKENPg
@TestDonCqmDJorr-qKDdKENPg 7 күн бұрын
0:05
@Tiparium_NMF
@Tiparium_NMF 7 күн бұрын
I love this breakdown, but it does somewhat leave me wondering when Sharding would be a good vs a bad idea. The cons seem pretty hefting in comparison to the pros. It would have been nice to run through a few specific different use cases and when one strategy would be better than another.
@ppppp524
@ppppp524 7 күн бұрын
I hate how you don't camel case your variable names. Hate it. I love the content tho, still gave a like
@marcusjackson9194
@marcusjackson9194 7 күн бұрын
hey, the both messages were "ObjectCreated:Put". Did you show us the same message twice by accident?
@itsmeshaheryar
@itsmeshaheryar 7 күн бұрын
Really like the explanation
@yotu9670
@yotu9670 7 күн бұрын
Which One is the Video which seems to be their first part where you have created the api gateway??
@DioXin
@DioXin 7 күн бұрын
How is this useful?
@anashe5417
@anashe5417 7 күн бұрын
No music, simple, straightforward, and well explain. Hard to find these type of videos. Keep the good work.
@Hiturion
@Hiturion 7 күн бұрын
I could never figured this second step out. Did set the IAM permission; why on earth you need this second step!! Thank you. So frustrating....
@TrishTruitt
@TrishTruitt 7 күн бұрын
Thank you! I signed up using a virtual credit card with a $10 a month limit.
@rishiraj2548
@rishiraj2548 7 күн бұрын
👍
@paperC_CSGO
@paperC_CSGO 7 күн бұрын
Very good, would love more content like this, AWS scenarios walk throughs
@timothyshiu2263
@timothyshiu2263 8 күн бұрын
Great video! Would you like to do a some unit test, integrated test, end to end test episode?
@maddada
@maddada 9 күн бұрын
Really cool explanation, thank you!
@paololizarazu
@paololizarazu 9 күн бұрын
Can I use fargate for db?
@zarpjox3r36
@zarpjox3r36 9 күн бұрын
good