Utilizzare CreateInternetGateway con un CLI - Esempi di codice dell'AWS SDK

Ci sono altri AWS SDK esempi disponibili nel repository AWS Doc SDK Examples GitHub .

Le traduzioni sono generate tramite traduzione automatica. In caso di conflitto tra il contenuto di una traduzione e la versione originale in Inglese, quest'ultima prevarrà.

Utilizzare CreateInternetGateway con un CLI

I seguenti esempi di codice mostrano come utilizzareCreateInternetGateway.

CLI
AWS CLI

Per creare un gateway Internet

L'create-internet-gatewayesempio seguente crea un gateway Internet con il tagName=my-igw.

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

Output:

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

Per ulteriori informazioni, consulta Internet gateway nella Amazon VPC User Guide.

PowerShell
Strumenti per PowerShell

Esempio 1: Questo esempio crea un gateway Internet.

New-EC2InternetGateway

Output:

Attachments InternetGatewayId Tags ----------- ----------------- ---- {} igw-1a2b3c4d {}