FifoThroughputScope
- class aws_cdk.aws_sns.FifoThroughputScope(*values)
 Bases:
EnumThe throughput quota and deduplication behavior to apply for the FIFO topic.
- ExampleMetadata:
 infused
Example:
topic = sns.Topic(self, "MyTopic", fifo=True, fifo_throughput_scope=sns.FifoThroughputScope.TOPIC )
Attributes
- MESSAGE_GROUP
 Message group scope - Throughput: Maximum regional limits.
Deduplication: Message deduplication is only verified within a message group.
- TOPIC
 Topic scope - Throughput: 3000 messages per second and a bandwidth of 20MB per second.
Deduplication: Message deduplication is verified on the entire FIFO topic.