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

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

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

GetFunctionConcurrency 搭配 CLI 使用

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

CLI
AWS CLI

檢視函數的預留並行設定

下列get-function-concurrency範例會擷取指定函數的預留並行設定。

aws lambda get-function-concurrency \ --function-name my-function

輸出:

{ "ReservedConcurrentExecutions": 250 }
PowerShell
for PowerShell 工具

範例 1:此範例會取得 Lambda 函數的預留並行

Get-LMFunctionConcurrency -FunctionName "MylambdaFunction123" -Select *

輸出:

ReservedConcurrentExecutions ---------------------------- 100