Describe Vpn Gateways
ec2_describe_vpn_gateways | R Documentation |
Describes one or more of your virtual private gateways¶
Description¶
Describes one or more of your virtual private gateways.
For more information, see Amazon Web Services Site-to-Site VPN in the Amazon Web Services Site-to-Site VPN User Guide.
Usage¶
ec2_describe_vpn_gateways(Filters, VpnGatewayIds, DryRun)
Arguments¶
Filters |
One or more filters.
|
VpnGatewayIds |
One or more virtual private gateway IDs. Default: Describes all your virtual private gateways. |
DryRun |
Checks whether you have the required permissions for the action,
without actually making the request, and provides an error response. If
you have the required permissions, the error response is
|
Value¶
A list with the following syntax:
list(
VpnGateways = list(
list(
AmazonSideAsn = 123,
Tags = list(
list(
Key = "string",
Value = "string"
)
),
VpnGatewayId = "string",
State = "pending"|"available"|"deleting"|"deleted",
Type = "ipsec.1",
AvailabilityZone = "string",
VpcAttachments = list(
list(
VpcId = "string",
State = "attaching"|"attached"|"detaching"|"detached"
)
)
)
)
)
Request syntax¶
svc$describe_vpn_gateways(
Filters = list(
list(
Name = "string",
Values = list(
"string"
)
)
),
VpnGatewayIds = list(
"string"
),
DryRun = TRUE|FALSE
)