PutFunctionConcurrency 搭配 CLI 使用 - AWS SDK 程式碼範例

文件 AWS SDK AWS 範例 SDK 儲存庫中有更多可用的 GitHub 範例。

本文為英文版的機器翻譯版本,如內容有任何歧義或不一致之處,概以英文版為準。

PutFunctionConcurrency 搭配 CLI 使用

下列程式碼範例示範如何使用 PutFunctionConcurrency

CLI
AWS CLI

設定函數的預留並行限制

下列put-function-concurrency範例會為my-function函數設定 100 個保留並行執行。

aws lambda put-function-concurrency \ --function-name my-function \ --reserved-concurrent-executions 100

輸出:

{ "ReservedConcurrentExecutions": 100 }

如需詳細資訊,請參閱 Lambda 開發人員指南中的為 Lambda 函數保留並行AWS

PowerShell
for PowerShell 工具

範例 1:此範例會套用函數的整體並行設定。

Write-LMFunctionConcurrency -FunctionName "MylambdaFunction123" -ReservedConcurrentExecution 100