Uses of Class
io.awspring.cloud.sns.core.SnsNotification
Packages that use SnsNotification
Package
Description
Sns integration core.
-
Uses of SnsNotification in io.awspring.cloud.sns.core
Methods in io.awspring.cloud.sns.core that return SnsNotificationModifier and TypeMethodDescriptionSnsNotification.Builder.build()static <T> SnsNotification<T> SnsNotification.of(T payload) Creates notification from payload.Methods in io.awspring.cloud.sns.core with parameters of type SnsNotificationModifier and TypeMethodDescriptionvoidSnsOperations.sendNotification(String topic, SnsNotification<?> notification) Sends a notification to a topic.voidSnsTemplate.sendNotification(String topic, SnsNotification<?> notification) -
Uses of SnsNotification in io.awspring.cloud.sns.core.async
Methods in io.awspring.cloud.sns.core.async with parameters of type SnsNotificationModifier and TypeMethodDescriptionSnsAsyncOperations.sendNotification(String topic, SnsNotification<T> notification) Sends a notification to a topic.SnsAsyncTemplate.sendNotification(String topic, SnsNotification<T> notification) -
Uses of SnsNotification in io.awspring.cloud.sns.core.batch
Method parameters in io.awspring.cloud.sns.core.batch with type arguments of type SnsNotificationModifier and TypeMethodDescription<T> BatchResultSnsBatchOperations.sendBatchNotifications(String topicName, Collection<SnsNotification<T>> notifications) Converts a collection of notifications to Spring messages and sends them as a batch to the specified SNS topic.<T> BatchResultSnsBatchTemplate.sendBatchNotifications(String topicName, Collection<SnsNotification<T>> notifications) Converts a collection ofSnsNotificationto Spring messages and sends them as a batch to the specified SNS topic.