DynamoDB integration with API Gateway - Amazon API Gateway p34

แชร์
ฝัง
  • เผยแพร่เมื่อ 20 ต.ค. 2024

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

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

    Excellent, thank you. Just helped me out with a work project. Saves using a lambda to create the item in table!

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

      Glad it helped! Please like, share & subscribe :)

  • @7th_CAV_Trooper
    @7th_CAV_Trooper 2 ปีที่แล้ว

    Very nice! Saved me hours of Googling.

    • @SrceCde
      @SrceCde  2 ปีที่แล้ว

      Glad it helped! Please like, share & subscribe :)

  • @PROcrastiDRIVESVofficial
    @PROcrastiDRIVESVofficial 3 ปีที่แล้ว

    Excellent tutorial, thank your for your efforts with this!

    • @SrceCde
      @SrceCde  3 ปีที่แล้ว +1

      Glad it was helpful! Please like, share & subscribe. :)

  • @sirjonaz
    @sirjonaz 2 ปีที่แล้ว

    Is this still supported? The new AWS Console doesn't have AWS Service (or AWS DynamoDB) as an option (like at timestamp 9:34 in your video). I also couldn't find any documentation stating if anything had changed.

  • @aishwaryatadaki4090
    @aishwaryatadaki4090 4 ปีที่แล้ว +1

    Hello Chirag,
    The video was infomative and very helpful. Thank you for the video!!!
    I had one more question- can we do batchwrite into dynamo db? Which means can we write or update multiple items into dynamo db using api gateway at once?

  • @Jav82
    @Jav82 2 ปีที่แล้ว

    How to create an api just to read data from dynamo, I want to do a test load using locust so I wanted to stress the DB. Is this possible?

  • @marwanghubein7879
    @marwanghubein7879 3 ปีที่แล้ว

    thanks a lot ,very invormative

    • @SrceCde
      @SrceCde  3 ปีที่แล้ว

      Glad it was helpful! Please like, share & subscribe. :)

  • @gowthammohan9657
    @gowthammohan9657 4 ปีที่แล้ว +1

    Nice one bro...please do videos on ec2 and load balancing

    • @SrceCde
      @SrceCde  4 ปีที่แล้ว

      Will work on the same soon. Please stay tuned. Please like, share & subscribe. :)

  • @aadhyashow5086
    @aadhyashow5086 2 ปีที่แล้ว

    Good content

    • @SrceCde
      @SrceCde  2 ปีที่แล้ว

      I am glad that you found the it helpful. Please like, share & subscribe :)

  • @aeshu4u
    @aeshu4u 2 ปีที่แล้ว

    Thanks! :)

  • @mattanishanth
    @mattanishanth 3 ปีที่แล้ว

    Do a video on external api data to dynamoDB table

  • @thevijayraj34
    @thevijayraj34 3 ปีที่แล้ว

    Awesome

    • @SrceCde
      @SrceCde  3 ปีที่แล้ว +1

      Glad that you found the video helpful. Please like, share & subscribe. :)

    • @thevijayraj34
      @thevijayraj34 3 ปีที่แล้ว

      @@SrceCde sure👍

  • @cristianraven1
    @cristianraven1 3 ปีที่แล้ว

    how you retrieve all the records in DynamoDB instead of giving a specific ID

    • @SrceCde
      @SrceCde  3 ปีที่แล้ว

      Thanks for stopping by cristian alfonso. To fetch multiple records without Key, you can use the scan() method. scan() method can scan the records up to a maximum of 1 MB and once it reaches that threshold the results are returned to the user as a LastEvaluatedKey value to continue the scan in a subsequent operation. You can read the documentation for more. Also, scan() is very expensive. I hope this helps. Please like, share & subscribe. :)

  • @chikosan99
    @chikosan99 3 ปีที่แล้ว

    Thanks a lot for your video!
    I learned a lot!
    I had an issue in the Mapping Templates
    not working for me..
    {
    "TableName": "api-demo",
    "Item": {
    "id": {"S": "$context.requestId"},
    "message": {"S": "$input.json('$.message')"},
    "token": {"S": "$input.param('tokenvalue')"}
    }
    }

    • @Georgeman3816
      @Georgeman3816 3 ปีที่แล้ว

      This works for me:
      {
      "TableName": "PFD_USER_EXPENSES",
      "Item": {
      "user_id": {"S": "$context.requestId"},
      "message": {"S": $input.json('$.message')},
      "token": {"S": "$input.params('tokenvalue')"}
      }
      }
      you had double quotes in your message value

    • @SunilBholaTrader
      @SunilBholaTrader 3 ปีที่แล้ว

      You dont need to give " " when you using payload but in case of QUERY STRING you need to give " ".. so remove " " from message