object SnsPublisher
Ordering
- Alphabetic
- By Inheritance
Inherited
- SnsPublisher
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Value Members
- def flow(topicArn: String, settings: SnsPublishSettings = SnsPublishSettings())(implicit snsClient: SnsAsyncClient): Flow[String, PublishResponse, NotUsed]
creates a Flow to publish messages to a SNS topic using an SnsAsyncClient
- def publishFlow()(implicit snsClient: SnsAsyncClient): Flow[PublishRequest, PublishResponse, NotUsed]
creates a Flow to publish messages to SNS topics based on the message topic arn using an SnsAsyncClient
- def publishFlow(settings: SnsPublishSettings)(implicit snsClient: SnsAsyncClient): Flow[PublishRequest, PublishResponse, NotUsed]
creates a Flow to publish messages to SNS topics based on the message topic arn using an SnsAsyncClient
- def publishFlow(topicArn: String, settings: SnsPublishSettings = SnsPublishSettings())(implicit snsClient: SnsAsyncClient): Flow[PublishRequest, PublishResponse, NotUsed]
creates a Flow to publish messages to a SNS topic using an SnsAsyncClient
- def publishSink()(implicit snsClient: SnsAsyncClient): Sink[PublishRequest, Future[Done]]
creates a Sink to publish messages to SNS topics based on the message topic arn using an SnsAsyncClient
- def publishSink(settings: SnsPublishSettings)(implicit snsClient: SnsAsyncClient): Sink[PublishRequest, Future[Done]]
creates a Sink to publish messages to SNS topics based on the message topic arn using an SnsAsyncClient
- def publishSink(topicArn: String, settings: SnsPublishSettings = SnsPublishSettings())(implicit snsClient: SnsAsyncClient): Sink[PublishRequest, Future[Done]]
creates a Sink to publish messages to a SNS topic using an SnsAsyncClient
- def sink(topicArn: String, settings: SnsPublishSettings = SnsPublishSettings())(implicit snsClient: SnsAsyncClient): Sink[String, Future[Done]]
creates a Sink to publish messages to a SNS topic using an SnsAsyncClient