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 DescribeVpnGateways
con un CLI
I seguenti esempi di codice mostrano come utilizzareDescribeVpnGateways
.
- CLI
-
- AWS CLI
-
Per descrivere i tuoi gateway privati virtuali
Questo esempio descrive i gateway privati virtuali.
Comando:
aws ec2 describe-vpn-gateways
Output:
{ "VpnGateways": [ { "State": "available", "Type": "ipsec.1", "VpnGatewayId": "vgw-f211f09b", "VpcAttachments": [ { "State": "attached", "VpcId": "vpc-98eb5ef5" } ] }, { "State": "available", "Type": "ipsec.1", "VpnGatewayId": "vgw-9a4cacf3", "VpcAttachments": [ { "State": "attaching", "VpcId": "vpc-a01106c2" } ] } ] }
-
Per API i dettagli, vedere DescribeVpnGateways
in AWS CLI Command Reference.
-
- PowerShell
-
- Strumenti per PowerShell
-
Esempio 1: questo esempio descrive il gateway privato virtuale specificato.
Get-EC2VpnGateway -VpnGatewayId vgw-1a2b3c4d
Output:
AvailabilityZone : State : available Tags : {} Type : ipsec.1 VpcAttachments : {vpc-12345678} VpnGatewayId : vgw-1a2b3c4d
Esempio 2: questo esempio descrive qualsiasi gateway privato virtuale il cui stato è in sospeso o disponibile.
$filter = New-Object Amazon.EC2.Model.Filter $filter.Name = "state" $filter.Values = @( "pending", "available" ) Get-EC2VpnGateway -Filter $filter
Esempio 3: questo esempio descrive tutti i gateway privati virtuali.
Get-EC2VpnGateway
-
Per API i dettagli, vedere DescribeVpnGatewaysin AWS Tools for PowerShell Cmdlet Reference.
-