Skip to content

Commit c779792

Browse files
committed
closes #568
1 parent 115f116 commit c779792

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/io/kestra/plugin/aws/sqs/RealtimeTrigger.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ public class RealtimeTrigger extends AbstractTrigger implements RealtimeTriggerI
9292

9393
@Schema(
9494
title = "The maximum number of messages returned from request made to SQS.",
95-
description = "Increasing this value can reduce the number of requests made to SQS. Amazon SQS never returns more messages than this value (however, fewer messages might be returned). Valid values: 1 to 10."
95+
description = "Increasing this value can reduce the number of requests made to SQS. Amazon SQS never returns more messages than this value (fewer messages might be returned). Valid values: 1 to 10. Setting this value to 1 would increase your AWS cost and latency because it requires more API requests to SQS. **Note that Realtime Triggers always create one execution per message, regardless of the value of this property.**"
9696
)
9797
@Builder.Default
9898
protected Property<Integer> maxNumberOfMessage = Property.of(5);

0 commit comments

Comments
 (0)