Interface TopicProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
TopicProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.113.0 (build fc68b25)", date="2025-09-15T14:52:07.553Z") @Stability(Stable) public interface TopicProps extends software.amazon.jsii.JsiiSerializable
Properties for a new SNS topic.

Example:

 Topic topic = Topic.Builder.create(this, "MyTopic")
         .fifo(true)
         .fifoThroughputScope(FifoThroughputScope.TOPIC)
         .build();