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

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

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

AllocateHosts 搭配 CLI 使用

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

CLI
AWS CLI

範例 1:配置專用主機

下列allocate-hosts範例會在eu-west-1a可用區域中配置單一專用主機,您可以在其中啟動m5.large執行個體。依預設,專用主機僅接受目標執行個體啟動,且不支援主機復原。

aws ec2 allocate-hosts \ --instance-type m5.large \ --availability-zone eu-west-1a \ --quantity 1

輸出:

{ "HostIds": [ "h-07879acf49EXAMPLE" ] }

範例 2:配置已啟用自動置放和主機復原的專用主機

下列allocate-hosts範例會在啟用自動置放和主機復原的eu-west-1a可用區域中配置單一專用主機。

aws ec2 allocate-hosts \ --instance-type m5.large \ --availability-zone eu-west-1a \ --auto-placement on \ --host-recovery on \ --quantity 1

輸出:

{ "HostIds": [ "h-07879acf49EXAMPLE" ] }

範例 3:使用標籤配置專用主機

下列allocate-hosts範例會配置單一專用主機,並使用名為 的索引鍵purpose和值 套用標籤production

aws ec2 allocate-hosts \ --instance-type m5.large \ --availability-zone eu-west-1a \ --quantity 1 \ --tag-specifications 'ResourceType=dedicated-host,Tags={Key=purpose,Value=production}'

輸出:

{ "HostIds": [ "h-07879acf49EXAMPLE" ] }

如需詳細資訊,請參閱 Amazon Elastic Compute Cloud Linux 執行個體使用者指南中的配置專用主機

  • 如需 API 詳細資訊,請參閱 AWS CLI 命令參考中的 AllocateHosts

PowerShell
for PowerShell 工具

範例 1:此範例會將指定執行個體類型和可用區域的專用主機配置到您的帳戶

New-EC2Host -AutoPlacement on -AvailabilityZone eu-west-1b -InstanceType m4.xlarge -Quantity 1

輸出:

h-01e23f4cd567890f3
  • 如需 API 詳細資訊,請參閱 AWS Tools for PowerShell Cmdlet 參考中的 AllocateHosts