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

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

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

CancelSpotInstanceRequests 搭配 CLI 使用

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

CLI
AWS CLI

若要取消 Spot 執行個體請求

此範例命令會取消 Spot 執行個體請求。

命令:

aws ec2 cancel-spot-instance-requests --spot-instance-request-ids sir-08b93456

輸出:

{ "CancelledSpotInstanceRequests": [ { "State": "cancelled", "SpotInstanceRequestId": "sir-08b93456" } ] }
PowerShell
for PowerShell 工具

範例 1:此範例會取消指定的 Spot 執行個體請求。

Stop-EC2SpotInstanceRequest -SpotInstanceRequestId sir-12345678

輸出:

SpotInstanceRequestId State --------------------- ----- sir-12345678 cancelled