Describe Direct Connect Gateways
| directconnect_describe_direct_connect_gateways | R Documentation |
Lists all your Direct Connect gateways or only the specified Direct Connect gateway¶
Description¶
Lists all your Direct Connect gateways or only the specified Direct Connect gateway. Deleted Direct Connect gateways are not returned.
Usage¶
Arguments¶
directConnectGatewayIdThe ID of the Direct Connect gateway.
maxResultsThe maximum number of results to return with a single call. To retrieve the remaining results, make another call with the returned
nextTokenvalue.If
MaxResultsis given a value larger than 100, only 100 results are returned.nextTokenThe token provided in the previous call to retrieve the next page.
Value¶
A list with the following syntax:
list(
directConnectGateways = list(
list(
directConnectGatewayId = "string",
directConnectGatewayName = "string",
amazonSideAsn = 123,
ownerAccount = "string",
directConnectGatewayState = "pending"|"available"|"deleting"|"deleted",
stateChangeError = "string"
)
),
nextToken = "string"
)