英文:
Fetching message with aws-sdk-go / roleARN / queueARN (sqs)
问题
我有一个已创建的 SQS 队列(具有队列 ARN)。我还创建了一个 IAM 角色(提供角色 ARN,并具有对队列 ARN 的访问权限)。我正在尝试使用此角色从队列中获取消息,但是我找不到一个示例的 Go 代码来执行此操作。
有什么提示吗?
英文:
I have a sqs queue created (which has the queueARN). I also have an IAM role created(which provides the roleARN and has access permissions to the queueARN). I'm trying to fetch messages from the queue using this role, but I'm unable to find a sample go code to do this operation.
Any hints?
答案1
得分: 1
我认为这是一个很好的起点。
https://github.com/aws/aws-sdk-go/blob/master/service/sqs/examples_test.go
英文:
I think this is a good starting point.
https://github.com/aws/aws-sdk-go/blob/master/service/sqs/examples_test.go
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论