Skip to content

Commit

Permalink
closes #568
Browse files Browse the repository at this point in the history
  • Loading branch information
anna-geller committed Dec 18, 2024
1 parent 115f116 commit c779792
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ public class RealtimeTrigger extends AbstractTrigger implements RealtimeTriggerI

@Schema(
title = "The maximum number of messages returned from request made to SQS.",
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."
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.**"
)
@Builder.Default
protected Property<Integer> maxNumberOfMessage = Property.of(5);
Expand Down

0 comments on commit c779792

Please sign in to comment.