SNS(Simple Notification Service)
<aside>
<img src="/icons/directional-sign-right_pink.svg" alt="/icons/directional-sign-right_pink.svg" width="40px" />
설명
- 구독 중인 서비스나 사용자에게 메시지 전달 및 전송을 해주는 서븟
- 완전관리형 pub/sub 메시징
- pub/sub : 메시지를 처리하는 곳과 수신하는 곳을 분리하는 비동기 메시징 서비스
- 주제(Topic)와 구독(Subscribe)
- 주제 : 메시지를 수신하는 엑세스 포인트
- 구독 : 주제를 통해 발생된 메시지들을 엔드포이틍롸 이어주는 역할
</aside>
<aside>
<img src="/icons/cloud-yes_blue.svg" alt="/icons/cloud-yes_blue.svg" width="40px" />
구조

- Publisher에서 메세지 전송
- Amazon SNS
- SNS Topic 에서 메시지 수신
- 설정된 endpoint에서 메시지를 수신할 수 없는 경우 DLQ(Dead-letter Queue)에서 처리
- Subscriber에서 메시지 수신
</aside>