'Is it possbile to publish one SNS Topic to another?

I have a requirement where my application, in AWS account A, needs to broadcast that a new resource is created, to AWS accounts: B, C and D.

I was thinking of implementing a solution, where an SNS Topic in Account A, publishes to SQS Queues Accounts: B, C and D (FanOut Pattern).

Question: Is it possible to use SNS Topics in account B, C and D rather than SQS Queues? Basically, is it possible to subscribe one SNS Topic to another?

I was not able to find anything that concretely answered the question.



Solution 1:[1]

No. Amazon SNS is not an available subscription type.

SNS Subscription types

You could subscribe an AWS Lambda function and that Lambda function could send messages to desired SNS topics.

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 John Rotenstein