Get Connections
| networkmanager_get_connections | R Documentation |
Gets information about one or more of your connections in a global network¶
Description¶
Gets information about one or more of your connections in a global network.
Usage¶
Arguments¶
GlobalNetworkId[required] The ID of the global network.
ConnectionIdsOne or more connection IDs.
DeviceIdThe ID of the device.
MaxResultsThe maximum number of results to return.
NextTokenThe token for the next page of results.
Value¶
A list with the following syntax:
list(
Connections = list(
list(
ConnectionId = "string",
ConnectionArn = "string",
GlobalNetworkId = "string",
DeviceId = "string",
ConnectedDeviceId = "string",
LinkId = "string",
ConnectedLinkId = "string",
Description = "string",
CreatedAt = as.POSIXct(
"2015-01-01"
),
State = "PENDING"|"AVAILABLE"|"DELETING"|"UPDATING",
Tags = list(
list(
Key = "string",
Value = "string"
)
)
)
),
NextToken = "string"
)