AWS LocalStack SQS - Installing AWS LocalStack

แชร์
ฝัง
  • เผยแพร่เมื่อ 7 ม.ค. 2025

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

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

    Thanks Junaid! It was really quick start with things.

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

      Thanks for your kind words Tukeshwar. I am glad you liked it :)

  • @mahendraprajapati3828
    @mahendraprajapati3828 4 ปีที่แล้ว +3

    I like sir your teaching way......

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

    Local Stack is not free is there any good open source alternative having all features

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

      Local Stack is free for non commercial use, but you will not get all features

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

    Thanks for the tutorial ..... can you share the text file you used to copy the commands?

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

      aws --endpoint-url=localhost:4566 sns create-topic --name customqueue-topic
      aws --endpoint-url=localhost:4566 sns subscribe --topic-arn arn:aws:sns:us-east-1:000000000000:customqueue-topic --protocol email --notification-endpoint abc@def.com
      aws --endpoint-url=localhost:4566 sns publish --topic-arn arn:aws:sns:us-east-1:000000000000:customqueue-topic --message 'Hello from my app'
      --------------------------------------------------------------------------------
      Create a Queue:
      aws --endpoint-url=localhost:4566 sqs create-queue --queue-name customqueue-queue
      Send Message to the Queue:
      aws --endpoint-url=localhost:4566 sqs send-message --queue-url localhost:4566/000000000000/customqueue-queue --message-body 'Test Message for my Queue!'
      Receive message from the QUeue:
      aws --endpoint-url=localhost:4566 sqs receive-message --queue-url localhost:4566/000000000000/customqueue-queue
      Recieve 10 messages from Queue:
      aws --endpoint-url=localhost:4566 sqs receive-message --queue-url localhost:4566/000000000000/customqueue-queue --attribute-names All --message-attribute-names All --max-number-of-messages 10