You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
See [the AWS documentation](https://docs.aws.amazon.com/lambda/latest/dg/concurrent-executions.html)
273
273
managing concurrency.
274
274
275
+
### AutoScaling
276
+
277
+
You can use Application AutoScaling to automatically configure the provisioned concurrency for your functions. AutoScaling can be set to track utilization or be based on a schedule. To configure AutoScaling on a function alias:
278
+
279
+
```ts
280
+
const alias =newlambda.Alias(stack, 'Alias', {
281
+
aliasName: 'prod',
282
+
version,
283
+
});
284
+
285
+
// Create AutoScaling target
286
+
const as =alias.addAutoScaling({ maxCapacity: 50 })
0 commit comments