<!-- ### Are you looking for help? If you have a [Lightbend Subscription](https://www.lightbend.com/lightbend-platform-subscription), please reach out via the [Lightbend Portal](https://portal.lightbend.com/). This is an issue tracker used to manage and track the development of this particular module. Please report issues regarding other projects in their respective issue trackers, e.g.: - Akka: https://github.com/akka/akka/issues - Akka HTTP: https://github.com/akka/akka-http/issues - Alpakka: https://github.com/akka/alpakka/issues - Alpakka Kafka: https://github.com/akka/alpakka-kafka/issues Please ask questions or discuss ideas in the [discuss.akka.io forum](https://discuss.akka.io/). ## Please add the following sections to your bug report --> ### Versions used <!-- add any other relevant versions here, please --> Akka version: Any version ### Expected Behavior Delay seconds parameter from SendMessageRequest should be forwarded to the batch requests ### Actual Behavior SendMessageBatchRequestEntry is build without the delay seconds parameter. https://github.com/akka/alpakka/blob/main/sqs/src/main/scala/akka/stream/alpakka/sqs/scaladsl/SqsPublishFlow.scala#L85 ```scala SendMessageBatchRequestEntry .builder() .id(i.toString) .messageBody(r.messageBody()) .messageAttributes(r.messageAttributes()) .messageGroupId(r.messageGroupId()) .messageDeduplicationId(r.messageDeduplicationId()) .build() ```