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

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

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

CreateInternetGateway 搭配 使用 CLI

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

CLI
AWS CLI

若要建立網際網路閘道

下列create-internet-gateway範例會使用標籤 建立網際網路閘道Name=my-igw

aws ec2 create-internet-gateway \ --tag-specifications ResourceType=internet-gateway,Tags=[{Key=Name,Value=my-igw}]

輸出:

{ "InternetGateway": { "Attachments": [], "InternetGatewayId": "igw-0d0fb496b3994d755", "OwnerId": "123456789012", "Tags": [ { "Key": "Name", "Value": "my-igw" } ] } }

如需詳細資訊,請參閱 Amazon VPC使用者指南 中的網際網路閘道

PowerShell
適用於 的工具 PowerShell

範例 1:此範例會建立網際網路閘道。

New-EC2InternetGateway

輸出:

Attachments InternetGatewayId Tags ----------- ----------------- ---- {} igw-1a2b3c4d {}
  • 如需API詳細資訊,請參閱 AWS Tools for PowerShell Cmdlet 參考 CreateInternetGateway中的 。