Interface TopicProps

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

@Generated(value="jsii-pacmak/1.121.0 (build d7af9b9)", date="2025-12-18T18:20:18.293Z") @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();