Interface TopicProps

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

@Generated(value="jsii-pacmak/1.112.0 (build de1bc80)", date="2025-07-29T17:51:09.504Z") @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();