GetMaintenanceWindowExecution 搭配 AWS SDK或 使用 CLI - AWS Systems Manager

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

GetMaintenanceWindowExecution 搭配 AWS SDK或 使用 CLI

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

CLI
AWS CLI

取得維護時段任務執行的相關資訊

下列get-maintenance-window-execution範例會列出在指定維護時段執行中執行之任務的相關資訊。

aws ssm get-maintenance-window-execution \ --window-execution-id "518d5565-5969-4cca-8f0e-da3b2EXAMPLE"

輸出:

{ "Status": "SUCCESS", "TaskIds": [ "ac0c6ae1-daa3-4a89-832e-d3845EXAMPLE" ], "StartTime": 1487692834.595, "EndTime": 1487692835.051, "WindowExecutionId": "518d5565-5969-4cca-8f0e-da3b2EXAMPLE", }

如需詳細資訊,請參閱 AWS Systems Manager 使用者指南中的檢視任務和任務執行的相關資訊 (AWS CLI)

PowerShell
適用於 的工具 PowerShell

範例 1:此範例列出在維護時段執行中執行的任務相關資訊。

Get-SSMMaintenanceWindowExecution -WindowExecutionId "518d5565-5969-4cca-8f0e-da3b2a638355"

輸出:

EndTime : 2/21/2017 4:00:35 PM StartTime : 2/21/2017 4:00:34 PM Status : FAILED StatusDetails : One or more tasks in the orchestration failed. TaskIds : {ac0c6ae1-daa3-4a89-832e-d384503b6586} WindowExecutionId : 518d5565-5969-4cca-8f0e-da3b2a638355

如需開發人員指南和程式碼範例的完整清單 AWS SDK,請參閱 搭配 使用 Systems Manager AWS SDK。本主題也包含有關入門的資訊,以及先前SDK版本的詳細資訊。