Ci sono altri AWS SDK esempi disponibili nel repository AWS Doc SDK Examples
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 DescribeInternetGateways
con un CLI
I seguenti esempi di codice mostrano come utilizzareDescribeInternetGateways
.
- CLI
-
- AWS CLI
-
Descrivere un gateway Internet
L'
describe-internet-gateways
esempio seguente descrive il gateway Internet specificato.aws ec2 describe-internet-gateways \ --internet-gateway-ids
igw-0d0fb496b3EXAMPLE
Output:
{ "InternetGateways": [ { "Attachments": [ { "State": "available", "VpcId": "vpc-0a60eb65b4EXAMPLE" } ], "InternetGatewayId": "igw-0d0fb496b3EXAMPLE", "OwnerId": "123456789012", "Tags": [ { "Key": "Name", "Value": "my-igw" } ] } ] }
Per ulteriori informazioni, consulta Internet gateway nella Amazon VPC User Guide.
-
Per API i dettagli, consulta DescribeInternetGateways AWS CLI
Command Reference.
-
- PowerShell
-
- Strumenti per PowerShell
-
Esempio 1: Questo esempio descrive il gateway Internet specificato.
Get-EC2InternetGateway -InternetGatewayId igw-1a2b3c4d
Output:
Attachments InternetGatewayId Tags ----------- ----------------- ---- {vpc-1a2b3c4d} igw-1a2b3c4d {}
Esempio 2: questo esempio descrive tutti i gateway Internet.
Get-EC2InternetGateway
Output:
Attachments InternetGatewayId Tags ----------- ----------------- ---- {vpc-1a2b3c4d} igw-1a2b3c4d {} {} igw-2a3b4c5d {}
-
Per API i dettagli, vedere DescribeInternetGatewaysin AWS Tools for PowerShell Cmdlet Reference.
-