Serverless Web Application backend using AWS Lambda and DynamoDB | Dynamic website hosting Part 2

แชร์
ฝัง
  • เผยแพร่เมื่อ 31 ก.ค. 2024
  • Hello Dear All, my name is Amit. I am here to give some tips and tricks about cloud learning and some day to day problem solving methods. I'm an professional cloud engineer, working in this fields for 12+ years.
    If you have any queries regarding AWS issues... feel free to reach out to me.
    In this video, I have discussed AWS Lambda with DynamoDB backend.
    “Serverless” is the concept of running applications without managing dedicated Linux servers yourself, usually with a Platform-as-a-Service solution like AWS’s App Runner or Lambda Functions. While you may run a normal application like NGINX on an EC2 virtual machine, you can usually serve the same kind of app without running servers.
    Amazon Lambda is AWS’s service offering serverless functions. With Lambda you can create functions for tasks, services, and automation and deploy them in the cloud while paying only for the compute time used by the running functions. AWS will automatically scale your functions according to the current load.
    Lambda integrates well with DynamoDB via Streams. You can configure a Lambda function to be triggered whenever your DynamoDB table receives an update. In a Lambda function you can do things such as sending notifications via Amazon SNS, writing to other DynamoDB tables, managing Cognito identity pools, as well as a number of other things both in and outside of AWS.
    CodeBase: github.com/nspacer/serverless...
    My email Id : beyondthecloud2022@gmail.com
    facebook: / beyondthecloud2022
    Linkedin: / beyondthecloud2023
    #aws #amazonwebservices #software #softwareengineer #developers #clouds #cloudengineer #cloudcomputing #systemdesign #database #programming #fullstack #cloudsecurity #security #fullstacksoftwareengineering #itindustry #engineering #engineer #beyondthecloud #AWSSystemsmanager #AWSdocuments #AWSautomation #s3 #S3sucurity #yamlfile #jsontemplate #python #pythonprogramming #awsec2 #awsec2security #ec2security #instancemetadata #ec2 #awslambda #awsconfig #cloudwatch #dynamodb #awsiam #boto3 #cdk #infrastructure #insfrastructureascode #python #sqs #serverless #sam #awssam #docker #dockercontainer #java #cloudfront #contentdeliverynetwork #awscloudfront
    @BeABetterDev @AWSTutorialsOnline @cluut @TinyTechnicalTutorials @BlockExplorerMedia @nickchapsas @itversity @TechwithLucy @Intellipaat @knowledgeindia @SimplilearnOfficial @TechnicalGuftgu @MachineLearningHub @edurekaIN @in28minutes @CodeWithHarry @QuickSupport @byluckysir
  • วิทยาศาสตร์และเทคโนโลยี

ความคิดเห็น • 14

  • @beyondthecloud
    @beyondthecloud  ปีที่แล้ว

    Please provide your valuable feedback in the comment section. Please like share and subscribe for more upcoming content.

    • @naaa_anveshana
      @naaa_anveshana ปีที่แล้ว

      I am getting error in lamda function sir

  • @pupun813
    @pupun813 ปีที่แล้ว

    Waiting for the final part.. nice video

  • @sampath853
    @sampath853 ปีที่แล้ว

    super content sir, please come up with more such hands-on videos

  • @bepositive6525
    @bepositive6525 ปีที่แล้ว

    Very informative video… thanks…👍🏻

  • @user-xm6vh6yc6q
    @user-xm6vh6yc6q 11 หลายเดือนก่อน

    Thank you for very useful video sir

  • @57_onkarsuryavanshi_comps36
    @57_onkarsuryavanshi_comps36 ปีที่แล้ว

    I am getting error in favicon file .
    is there any solution?

    • @beyondthecloud
      @beyondthecloud  ปีที่แล้ว

      What is the exact error you are getting and where is the file located?

  • @prajnaduttmd1949
    @prajnaduttmd1949 10 หลายเดือนก่อน

    can u share the lamdarole

    • @beyondthecloud
      @beyondthecloud  10 หลายเดือนก่อน

      Certainly. Here you go.
      {
      "Version": "2012-10-17",
      "Statement": [
      {
      "Effect": "Allow",
      "Action": [
      "dynamodb:Scan",
      "dynamodb:PutItem"
      ],
      "Resource": "arn:aws:dynamodb:eu-central-1:YOUR_ACCOUNT_ID:table/employeeProfile"
      },
      {
      "Effect": "Allow",
      "Action": [
      "logs:CreateLogGroup",
      "logs:CreateLogStream",
      "logs:PutLogEvents"
      ],
      "Resource": "arn:aws:logs:eu-central-1:YOUR_ACCOUNT_ID:log-group:/aws/lambda/YOUR_LAMBDA_FUNCTION_NAME:*"
      }
      ]
      }