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

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

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

ModifyIdFormat 搭配 CLI 使用

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

CLI
AWS CLI

為資源啟用較長的 ID 格式

下列modify-id-format範例會啟用instance資源類型的較長 ID 格式。

aws ec2 modify-id-format \ --resource instance \ --use-long-ids

停用資源的較長 ID 格式

下列modify-id-format範例會停用instance資源類型的較長 ID 格式。

aws ec2 modify-id-format \ --resource instance \ --no-use-long-ids

下列modify-id-format範例會針對其選擇加入期間的所有支援資源類型,啟用較長的 ID 格式。

aws ec2 modify-id-format \ --resource all-current \ --use-long-ids
  • 如需 API 詳細資訊,請參閱 AWS CLI 命令參考中的 ModifyIdFormat

PowerShell
for PowerShell 工具

範例 1:此範例會啟用指定資源類型的較長 ID 格式。

Edit-EC2IdFormat -Resource instance -UseLongId $true

範例 2:此範例會停用指定資源類型的較長 ID 格式。

Edit-EC2IdFormat -Resource instance -UseLongId $false
  • 如需 API 詳細資訊,請參閱 AWS Tools for PowerShell Cmdlet 參考中的 ModifyIdFormat