@aws concurrency
Configure Lambda function concurrency. If not present concurrency is unthrottled.
Examples
Limit execution to one invocation at a time
@aws
concurrency 1
Tip:
@events
functions withconcurrency 1
create a queue-like primitive
Disable invocation by setting concurrency to zero
@aws
concurrency 0