Describe Customer Gateways
ec2_describe_customer_gateways | R Documentation |
Describes one or more of your VPN customer gateways¶
Description¶
Describes one or more of your VPN customer 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_customer_gateways(CustomerGatewayIds, Filters, DryRun)
Arguments¶
CustomerGatewayIds |
One or more customer gateway IDs. Default: Describes all your customer gateways. |
Filters |
One or more filters.
|
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(
CustomerGateways = list(
list(
CertificateArn = "string",
DeviceName = "string",
Tags = list(
list(
Key = "string",
Value = "string"
)
),
BgpAsnExtended = "string",
CustomerGatewayId = "string",
State = "string",
Type = "string",
IpAddress = "string",
BgpAsn = "string"
)
)
)
Request syntax¶
svc$describe_customer_gateways(
CustomerGatewayIds = list(
"string"
),
Filters = list(
list(
Name = "string",
Values = list(
"string"
)
)
),
DryRun = TRUE|FALSE
)
Examples¶
## Not run:
# This example describes the specified customer gateway.
svc$describe_customer_gateways(
CustomerGatewayIds = list(
"cgw-0e11f167"
)
)
## End(Not run)